IChartAxis.StepMode

Syntax

StepMode: ChartAxisStepMode;

Description

The StepMode property determines a method of tick marks calculation.

Comments

Tick marks are calculated automatically by default.

Example

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