The ScatterPlotColorFixed option changes the color when the ScatterPlotColorMethod 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(“ScatterPlotColorFixed”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the symbol color to Magenta.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "ScatterPlot")
CommandAPi.Option ("ScatterPlotColorFixed", "Magenta")
CommandApi.Do()
Used by: ScatterPlot module
See Also