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

DXPieHintStyle Class

The Pie Chart Hint’s appearance settings storage.

Namespace: DevExpress.Xamarin.iOS.Charts

Assembly: DevExpress.Xamarin.iOS.Charts.dll

Declaration

public class DXPieHintStyle :
    DXHintStyleBase

The following members return DXPieHintStyle objects:

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.

Implements

IEquatable<Foundation.NSObject>
Foundation.INSObjectProtocol
ObjCRuntime.INativeObject

Inheritance

Object
Foundation.NSObject
See Also