Class DataPoint
Base class for all points that may be plotted by a Telerik.Charting.ChartPlotAreaModel.
Inherited Members
Namespace: Telerik.Charting
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public abstract class DataPoint : ChartNode, INotifyPropertyChanged, IDataPoint
Constructors
DataPoint()
Properties
DataItem
Gets the object instance that represents the data associated with this point. Valid when the owning ChartSeries is data-bound.
Declaration
public object DataItem { get; }
Property Value
System.Object
|
IsInPlotRange
Gets a value indicating whether the data point may be plotted correctly.
Declaration
public virtual bool IsInPlotRange { get; }
Property Value
System.Boolean
|
IsSelected
Gets or sets a value indicating whether the data point is currently in a "Selected" state.
Declaration
public bool IsSelected { get; set; }
Property Value
System.Boolean
|
Label
Gets or sets the label associated with this point.
Declaration
public object Label { get; set; }
Property Value
System.Object
|