The ScatterPlotLineWidth option changes the width of displayed lines connecting the points 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(“ScatterPlotLineWidth”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the line width to 3.2.
'This changes the line width of the scatter plot lines
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "ScatterPlot")
CommandApi.Option ("ScatterPlotLineWidth", "3.2")
CommandApi.Do()
Used by: ScatterPlot module
See Also