StepMode: ChartAxisStepMode;
The StepMode property determines a method of tick marks calculation.
Tick marks are calculated automatically by default.
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