AutoScaleMode: Integer;
The AutoScaleMode property determines method of automatic scaling of an axis.
This property is outdated, use IChartAxis.AutoScale.
| Value | Brief description |
| 0 | Scaled axis is not used. This value is used by default. |
| 1 | Clustering. When selecting this scale mode, define the IChartAxis.AutoScaleParameter property. |
| 2 | Distributed scaling. When selecting this scale mode, define the IChartAxis.AutoScaleParameter property. |
| 3 | Custom scale. The custom mode of axis display. |
This example assumes that there is the ChartAxis object of the IChartAxis type.
Sub Scale;
Var
ChartAxis: IChartAxis;
Begin
ChartAxis.AutoScaleMode:= 1;
ChartAxis.AutoScaleParameter:= 5;
End Sub Scale;
After executing the example clustering with the specified parameter is applied to the axis.
See also: