Class
DataPoint

Base class for all points that may be plotted by a ChartPlotAreaModel.

Definition

Constructors

DataPoint()

Initializes a new instance of the DataPoint class.

Declaration

cs-api-definition
protected DataPoint()

Properties

DataItem

Gets the object instance that represents the data associated with this point. Valid when the owning ChartSeries is data-bound.

Declaration

cs-api-definition
public object DataItem { get; }

Property Value

object

IsInPlotRange

Gets a value indicating whether the data point may be plotted correctly.

Declaration

cs-api-definition
public virtual bool IsInPlotRange { get; }

Property Value

bool

IsSelected

Gets or sets a value indicating whether the data point is currently in a "Selected" state.

Declaration

cs-api-definition
public bool IsSelected { get; set; }

Property Value

bool

Label

Gets or sets the label associated with this point.

Declaration

cs-api-definition
public object Label { get; set; }

Property Value

object