The ScatterPlotShowLines option changes the display of lines connecting the points in the scatter plot. The OptionValue is either True or False. True displays lines 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(“ScatterPlotShowLines”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the density of points to 50%.
'This shows lines connecting the scatter points
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "ScatterPlot")
CommandApi.Option ("ScatterPlotShowLines", "True")
CommandApi.Do()
Used by: ScatterPlot module
See Also