AutoScaleMode: Integer;
The AutoScaleMode property determines an automatic axis scale mode.
The property is outdated, use IChartAxis.AutoScale.
| Value | Brief description |
| 0 | Scaleable axis is not used. This value is used by default. |
| 1 | Clustering. When this scale mode is selected, set the IChartAxis.AutoScaleParameter property. |
| 2 | Distributed scaling. When this scale mode is selected, set 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: