The AxesGridLineWidth option changes the line width of the grid lines in the Axes. The OptionValue is set to a number between 0 and 4.
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(“AxesGridLineWidth”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the Axes grid line width to 1.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Axes")
CommandApi.Option ("AxesGridLineWidth", "1")
CommandApi.Do()
Used by: Axes
See Also