The AxesGridColor option changes the color of the X, Y, and Z grid lines to the specified color. The OptionValue is set to any color name. This command replaces the AxesColorGrid option.
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(“AxesGridColor”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to set the X, Y, and Z axis grid line color.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Axes")
CommandApi.Option ("AxesGridColor", "Pale Yellow")
CommandApi.Do()
Used by: Axes module
See Also