The AxesYAxisBeg option changes the Y axis minimum value. The OptionValue is set to any number.
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("AxesYAxisBeg", “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to change the Y Axis minimum value to 20.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Axes")
CommandApi.Option ("AxesYAxisBeg", "20")
CommandApi.Do()
Used by: Axes module
See Also