Gets the specified ChartDataSeries by numeric index.

Namespace:  C1.Win.C1Chart
Assembly:  C1.Win.C1Chart.2 (in C1.Win.C1Chart.2.dll)

Syntax

C#
[RefreshPropertiesAttribute(RefreshProperties.Repaint)]
public ChartDataSeries this[
	int index
] { get; }
Visual Basic
<RefreshPropertiesAttribute(RefreshProperties.Repaint)> _
Public ReadOnly Default Property Item ( _
	index As Integer _
) As ChartDataSeries
	Get

Parameters

index
Type: System..::..Int32

Remarks

Although not a collection object, ChartData allows direct indexing of the elements of ChartDataSeriesCollection contained within the ChartData object. This is for convenience when programming.

See Also