Class PolarDataPoint
Represents a data point that is plotted on charts, using Polar coordinate system and two linear axes.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.Charting
Assembly: Telerik.WinControls.ChartView.dll
Syntax
public class PolarDataPoint : DataPoint, IDisposable, INotifyPropertyChanged
Constructors
PolarDataPoint()
PolarDataPoint(Double, Double)
Initializes a new instance of the PolarDataPoint class.
Declaration
public PolarDataPoint(double value, double angle)
Parameters
System.Double
value
The value. |
System.Double
angle
The angle. |
Properties
Angle
Gets or sets the angle of the data point.
Declaration
public double Angle { get; set; }
Property Value
System.Double
|
Value
Gets or sets the value (radius) of the data point.
Declaration
public double? Value { get; set; }
Property Value
System.Nullable<System.Double>
|