StepMode: ChartAxisStepMode;
The StepMode property determines the method of scale divisions calculation.
By default the marks are calculated automatically.
This example assumes that there is the ChartAxis object of the IChartAxis type.
Sub StepMode;
Var
ChartAxis : IChartAxis;
Begin
ChartAxis.StepMode := ChartAxisStepMode.FixedIntervals;
ChartAxis.IntervalsCount := 2;
End Sub StepMode;
After executing the example the axis has two intervals.
See also:
IChartAxis | IChartAxis.StepValue | ChartAxis.IntervalsCount | IChartAxis.StepDistance