Description
Sets or returns whether the axis will automatically scale itself to the data. If this setting is TRUE, the Minimum, Maximum, NumTicks, ScaleFactorType, and ScaleFactorValue properties of the axis will be ignored. By default this property is TRUE.
Syntax
object.AutoScale
Arguments
None.
Return Value
(Boolean) – TRUE if the axis will autoscale, FALSE if not.
Example
'Force the x-axis axis to run between 0 and 100 with 10 ticks:
With RDKApp.GraphDefaults.XAxis
.AutoScale = FALSE
.Minimum = 0
.Maximum = 100
.NumTicks = 10
End With