Item(Index: Integer): IChartSerie;
Index - number of a series in a graph. Numeration starts from zero.
The Item property is used to define 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: