AxesXAxisLabelFormatNumDigits Option

 

The AxesXAxisLabelFormatNumDigits option sets number of digits in the label format for the X 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(“AxesXAxisLabelFormatNumDigits”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example changes the label format number of digits for the X axis.

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("AxesXAxisLabelFormatNumDigits", "2")

  CommandApi.Do()

 

Used by: Axes module

 

 

See Also

Automation Model