IChartSerie.AtSecondaryAxis

Syntax

AtSecondaryAxis: Boolean;

Description

The AtSecondaryAxis property determines whether an additional axis will be used for an axis.

Comments

If the property is set to True, an additional axis is added in a graph for the series.

The default value of this property is False.

Example

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

Sub DatumLine;

Var

Chart: IChart;

Serie: IChartSerie;

Begin

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

Serie.AtSecondaryAxis := True;

End Sub DatumLine;

After executing the example an additional axis is added for a series with zero index.

See also:

IChartSerie