Item(Index: Integer): IChartSerie;
Index - number of a series on a graph. Numbering starts with zero.
The Item property is used to determine settings of a specific chart series.
This example assumes that there is the Chart object of the IChart type.
Sub SetLabel;
Var
Chart: IChart;
Begin
Chart.Series.Item(0).EnableLabel(1,True);
End Sub SetLabel;
After executing the example the second level for the first data series is displayed.
See also: