AxesXAxisLabelFormatType Option

 

The AxesXAxisLabelFormatType option sets label format for the X Axis of an Axes module. The OptionValue is 0, 1, or 2 for Fixed, Exponential, or General.

 

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(“AxesXAxesLabelFormatType”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example changes the label format to Fixed for the X axis.

 

  CommandApi.Construct ("ModifyModule")

  CommandApi.Option ("Module", "Axes")

  CommandApi.Option ("AxesXAxesLabelFormatType", "0")

  CommandApi.Do()

 

Used by: Axes module

 

 

See Also

Automation Model