The ScatterPlotColorComponent option changes the component that is used when the ScatterPlotColorMethod is set to 1. The OptionValue is the component number. This option is only available when more than one component exists in the data.
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(“ScatterPlotColorComponent”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the color component, when the data set has more than one component.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "ScatterPlot")
CommandApi.Option ("ScatterPlotColorComponent", "2")
CommandApi.Do()
Used by: ScatterPlot module
See Also