Skip to main content
A newer version of this page is available.

DXPieHint.Style Property

Gets or sets the Pie Chart Hint’s appearance settings.

Namespace: DevExpress.Xamarin.iOS.Charts

Assembly: DevExpress.Xamarin.iOS.Charts.dll

Declaration

public virtual DXPieHintStyle Style { get; set; }

Property Value

Type Description
DXPieHintStyle

The Pie Chart Hint’s appearance settings storage.

Example

The following image displays style properties that manages the hint appearance:

Style parameters

The code below configures the tooltip as the image above shows:

// All sizes are in screen points.
this.pieChart.Hint = new DXPieHint {
    Style = new DXHintStyle {
        BackgroundColor = new UIColor.FromWhiteAlpha(white: 0.8f, alpha: 0.8f),
        Padding = new UIEdgeInsets(12.0f, 24.0f, 12.0f, 24.0f),
        MarkerSize = 24,
        TextIndent = 12,
        TextStyle = new TextStyle {
            ForegroundColor = UIColor.Black,
            FontSize = 24
        }
    }
};

The following table lists symbols that specify the tooltip’s appearance:

Symbols

Description

DXPieHint.Style

Gets or sets the Pie Chart Hint’s appearance settings.

DXPieHintStyle

The Pie Chart Hint’s appearance settings storage.

See Also