ScatterPlotSizeMarker Option

 

The ScatterPlotSizeMarker option changes the symbol size when the ScatterPlotMarker is 30. The OptionValue is a number between 0 and 2.0.

 

Use the ScatterPlotSizePoint for when the ScatterPlotMarker is between 0 and 29.

 

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

object.Do() or object.DoOnce()

 

Example

This example changes the symbol size 4.5.

 

  CommandApi.Construct ("ModifyModule")

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

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

  CommandApi.Do()

 

Used by: ScatterPlot module

 

 

See Also

Automation Model