IChartAxis.AutoScaleParameter

Syntax

AutoScaleParameter: Double;

Description

The AutoScaleParameter property determines an automatic scale parameter.

Comments

The default parameter value is 0.

When specifying the automatic scale parameter, set corresponding value for the IChartAxis.AutoScale property.

Example

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

To execute the example, add a link to the Chart system assembly.

Sub Scale;
Var
    ChartAxis: IChartAxis;
Begin
    ChartAxis.AutoScale := 
1 As ChartAutoScaleMode;
    ChartAxis.AutoScaleParameter := 
5;
End Sub Scale;

After executing the example clustering with the specified parameter is applied to the axis.

See also:

IChartAxis