The ScatterPlotShowLabels option changes the display of labels in the scatter plot. The OptionValue is either True or False. True displays labels and False does not.
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(“ScatterPlotShowLabels”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example turns the display of labels on.
'This shows labels at each of the scatter points
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "ScatterPlot")
CommandApi.Option ("ScatterPlotShowLabels", "True")
CommandApi.Do()
Used by: ScatterPlot module
See Also