The ScatterPlotLabelColor option changes the color when the ScatterPlotLabelColorMethod is set to 0. The OptionValue is the name of the color.
Syntax
object.Construct(“CreateModule”)
object.Option(“SourceModule”, “data file name”)
object.Option(“Type”, “ScatterPlot”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “ScatterPlot”)
object.Option(“ScatterPlotLabelColor”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the label color to Magenta.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "ScatterPlot")
CommandAPi.Option ("ScatterPlotLabelColor", "Magenta")
CommandApi.Do()
Used by: ScatterPlot module
See Also