The AxesAutoScale option recalculates the automatic scaling on the axes. The OptionValue is set to True or False. True recalculates the scale. False leaves the scaling as is.
Syntax
object.Construct(“CreateModule”)
object.Option(“SourceModule”, “data file name”)
object.Option(“Type”, "Axes")
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “Axes”)
object.Option(“AxesAutoScale”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to recalculate the automatic scaling.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Axes")
CommandApi.Option ("AxesAutoScale", "True")
CommandApi.Do()
Used by: Axes module
See Also