Class PieDataPoint
Represents a single-value data point plotted by a pie chart.
Inheritance
Inherited Members
Namespace: Telerik.Charting
Assembly: Telerik.WinControls.ChartView.dll
Syntax
public class PieDataPoint : SingleValueDataPoint, IDisposable, INotifyPropertyChanged
Constructors
PieDataPoint()
PieDataPoint(Double)
Initializes a new instance of the PieDataPoint class.
Declaration
public PieDataPoint(double value)
Parameters
System.Double
value
The value. |
PieDataPoint(Double, String)
Initializes a new instance of the PieDataPoint class.
Declaration
public PieDataPoint(double value, string legendTitle)
Parameters
System.Double
value
The value. |
System.String
legendTitle
The legend title. |
Properties
LegendTitle
Gets or sets the string that will be displayed in the legend for the point.
Declaration
public string LegendTitle { get; set; }
Property Value
System.String
|
OffsetFromCenter
Gets or sets the offset of the point from the center of the pie.
Declaration
public double OffsetFromCenter { get; set; }
Property Value
System.Double
|
Percent
Gets the value which indicates the percentage of the total points sum this point's value is.
Declaration
public double Percent { get; }
Property Value
System.Double
|
RadiusAspectRatio
Gets or sets the radius aspect ratio of the point.
Declaration
public float RadiusAspectRatio { get; set; }
Property Value
System.Single
|
StartAngle
Gets the starting angle of this point.
Declaration
public double StartAngle { get; }
Property Value
System.Double
|
SweepAngle
Gets the sweep angle of this point.
Declaration
public double SweepAngle { get; }
Property Value
System.Double
|