The AxesYAxisLabelFormatNumDigits option sets number of digits in the label format for the Y Axis for the Axes module. The OptionValue is an integer between 0 and 15.
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(“AxesYAxisLabelFormatNumDigits”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the label format number of digits for the Y axis.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Axes")
CommandApi.Option ("AxesYAxisLabelFormatNumDigits", "2")
CommandApi.Do()
Used by: Axes module
See Also