The ScatterPlotLabelField option sets which field is used for labels in the ScatterPlot module. The OptionValue is the name of the field.
Available option values are Component 1, Component 2, Component 3, etc. Labels, X, Y, Z, and XYZ.
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(“ScatterPlotLabelField”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the labels to display the value from the label column.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "ScatterPlot")
CommandApi.Option ("ScatterPlotLabelField", "Labels")
CommandApi.Do()
Used by: ScatterPlot module
See Also