IChartAxis.StepDistance

Syntax

StepDistance: Double;

Description

The StepDistance property enables the user to set a minimum distance between interval values in millimeters. When setting a minimum distance between interval values the user must set an appropriate value for the StepMode property.

Example

This example assumes that there is the ChartAxis object of the IChartAxis type.

Sub StepMode;

Var

ChartAxis : IChartAxis;

Begin

ChartAxis.StepMode := 4 As ChartAxisStepMode;

ChartAxis.StepDistance := 10 ;

End Sub StepMode;

After executing the example the distance between interval values is 10 mm.

See also:

IChartAxis | IChartAxis.StepMode