AtSecondaryAxis: Boolean;
The AtSecondaryAxis property determines whether an additional axis will be used for an axis.
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.
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: