IChartAxis.StepMode

Syntax

StepMode: ChartAxisStepMode;

Description

The StepMode property determines the method of scale divisions calculation.

Comments

By default the marks are calculated automatically.

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