The AxesXAxisLabelFormatPostfix option sets the postfix for the label in the X axis for the Axes module. The OptionValue is the desired postfix label
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(“AxesXAxisLabelFormatPostfix”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the label postfix for the X axis.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Axes")
CommandApi.Option ("AxesXAxisLabelFormatPostfix", "-post")
CommandApi.Do()
Used by: Axes module
See Also