IChartSerie.Chart

Syntax

Chart: IChart;

Description

The Chart property returns an object of the IChart type, to which this series belongs.

Example

This example assumes that there is the Chart object of the IChart type.

Sub owner;

Var

Chart: IChart;

Serie: IChartSerie;

Begin

Serie := Chart.Series.Item(0);

Series.Chart.DisplayLegend := True ;

End Sub owner;

After executing the example the legend is displayed.

See also:

IChartSerie