ScatterPlotSizePoint Option

 

The ScatterPlotSizePoint option changes the symbol size when the ScatterPlotMarker is between 0 and 29. The OptionValue is 0, 1, or 2. 0 specifies a symbol size of 5x5, 1 a size of 7x7 and 2 a size of 9x9.

 

Use the ScatterPlotSizeMarker for when the ScatterPlotMarker is 30.

 

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(“ScatterPlotSizePoint”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example changes the symbol to symbol type 17 (Pine Tree Line).

 

 'This changes the symbol size for symbol marker numbers 0 to 29.

 'This is a number between 0 and 2. 0 is the smallest, 2 is the largest sized symbol.

  CommandApi.Construct ("ModifyModule")

   CommandApi.Option ("Module", "ScatterPlot")

   CommandApi.Option ("ScatterPlotSizeMarker", "2")

  CommandApi.Do()

 

Used by: ScatterPlot module

 

 

See Also

Automation Model