The AxesXAxisShowLabels option changes the display of the X Axis labels. The OptionValue is set to True or False. True shows the labels. False turns the label display off.
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("AxesXAxisFlipLabels", “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to flip the X axis labels in the horizontal direction.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Axes")
CommandApi.Option ("AxesXAxisFlipLabelsX", "True")
CommandApi.Do()
Used by: Axes module
See Also