The AxesXAxisTitle option assigns a title to the X Axis. The OptionValue is set to any text.
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("AxesXAxisTitle", “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to assign a title to the X Axis.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Axes")
CommandApi.Option ("AxesXAxisTitle", "X Axis Title")
CommandApi.Do()
Used by: Axes module
See Also