New to Telerik UI for WinFormsStart a free 30-day trial

Represents a single-value data point plotted by a pie chart.

Definition

Constructors

Initializes a new instance of the PieDataPoint class.

C#
public PieDataPoint()

Initializes a new instance of the PieDataPoint class.

C#
public PieDataPoint(double value, string legendTitle)
Parameters:valuedouble

The value.

legendTitlestring

The legend title.

Initializes a new instance of the PieDataPoint class.

C#
public PieDataPoint(double value)
Parameters:valuedouble

The value.

Properties

Gets or sets the string that will be displayed in the legend for the point.

C#
public string LegendTitle { get; set; }

Gets or sets the offset of the point from the center of the pie.

C#
public double OffsetFromCenter { get; set; }

Gets the value which indicates the percentage of the total points sum this point's value is.

C#
[Browsable(false)]
public double Percent { get; }

Gets or sets the radius aspect ratio of the point.

C#
public float RadiusAspectRatio { get; set; }

Gets the starting angle of this point.

C#
[Browsable(false)]
public double StartAngle { get; }

Gets the sweep angle of this point.

C#
[Browsable(false)]
public double SweepAngle { get; }