New to Telerik UI for .NET MAUIStart a free 30-day trial

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

Constructors

C#
public PieSeries()

Fields

LabelBindingProperty

BindableProperty

Identifies the LabelBinding bindable property.

C#
public static readonly BindableProperty LabelBindingProperty

Identifies the LabelOffsetFraction bindable property.

C#
public static readonly BindableProperty LabelOffsetFractionProperty

ValueBindingProperty

BindableProperty

Identifies the ValueBinding bindable property.

C#
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.

C#
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.

C#
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.

C#
public string ValueBinding { get; set; }