IChartSeries.Item

Syntax

Item(Index: Integer): IChartSerie;

Parameters

Index - number of a series on a graph. Numbering starts with zero.

Description

The Item property is used to determine settings of a specific chart series.

Example

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:

IChartSeries