Interface IChartItem
Represents a single chart item of a DataSeries in the ChartArea. This is the visual representation of a DataPoint.
Namespace: Telerik.Windows.Controls.Charting
Assembly: Telerik.Windows.Controls.Charting.dll
Syntax
public interface IChartItem
Properties
ChartArea
Gets the ChartArea the current Chart item belongs to.
Declaration
ChartArea ChartArea { get; }
Property Value
ChartArea
The chart area. |
CurrentIndex
Gets the index of the current DataPoint in the DataSeries.
Declaration
int CurrentIndex { get; }
Property Value
System.Int32
The index of the current. |
DataPoint
Gets or sets the data point that is associated with this chart item.
Declaration
DataPoint DataPoint { get; set; }
Property Value
DataPoint
The data point. |
DataSeries
Gets the DataSeries collection to which the DataPoint belongs.
Declaration
DataSeries DataSeries { get; set; }
Property Value
DataSeries
The data points. |