PieSeries
Represents a radial series that renders each data item as a slice of a circle, sized proportionally to its bound value relative to the total of all values in the series.
Definition
Namespace:Telerik.Maui.Controls.Charts
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class PieSeries : ChartSeries
Inheritance: objectChartSeriesPieSeries
Derived Classes:
Inherited Members
Constructors
public PieSeries()
Fields
LabelBindingProperty
BindableProperty
Identifies the LabelBinding bindable property.
public static readonly BindableProperty LabelBindingProperty
LabelOffsetFractionProperty
BindableProperty
Identifies the LabelOffsetFraction bindable property.
public static readonly BindableProperty LabelOffsetFractionProperty
ValueBindingProperty
BindableProperty
Identifies the ValueBinding bindable property.
public static readonly BindableProperty ValueBindingProperty
Properties
Gets or sets the name of the property on each data item, in ItemsSource, that provides the text displayed for its slice when ShowLabels is true. The property is resolved by name through reflection at layout time, so it must exactly match a public, readable member of the bound item type.
public string LabelBinding { get; set; }
Gets or sets the radial position of each slice's label, expressed as a fraction of the slice radius
measured from the center of the pie. A value of 1.0 places labels at the outer edge of the slices,
while smaller values move labels closer to the center. The value must lie in the (0, 1] interval;
the default is 0.7.
public double LabelOffsetFraction { get; set; }
Gets or sets the name of the property on each data item, in ItemsSource, that provides the numeric magnitude used to compute the proportional angle of its slice. The property is resolved by name through reflection at layout time, so it must exactly match a public, readable member of the bound item type.
public string ValueBinding { get; set; }