The ScatterPlotLeaderLineWidth option changes the width of displayed lines connecting the points to the labels in the scatter plot. The OptionValue is a number between 0 and 4.0. The larger the number, the thicker the line.
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(“ScatterPlotLeaderLineWidth”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the line width to 1.2.
'This changes the leader line width of the scatter plot labels
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "ScatterPlot")
CommandApi.Option ("ScatterPlotLeaderLineWidth", "3.2")
CommandApi.Do()
Used by: ScatterPlot module
See Also