The ScatterPlotShowLeaderLines option changes the display of lines between labels and the symbols 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(“ScatterPlotShowLeaderLines”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example turns the display of lines between labels and symbols on.
'This shows lines between labels and symbols for each of the scatter points
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "ScatterPlot")
CommandApi.Option ("ScatterPlotShowLeaderLines", "True")
CommandApi.Do()
Used by: ScatterPlot module
See Also