ScatterPlotXOffset Option

 

The ScatterPlotXOffset option changes the X position of the label for a ScatterPlot module. The OptionValue is set to any number between -100 and +100. Negative values move the label left. Positive values move the label right.

 

Syntax

object.Construct(“CreateModule”)

object.Option(“Type”, “ScatterPlot”)

object.Do() or object.DoOnce()

 

object.Construct(“ModifyModule”)

object.Option(“Module”, “ScatterPlot”)

object.Option(“ScatterPlotXOffset”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example shows how to change the scatter plot label's X position.

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("ScatterPlotXOffset", "50")

  CommandApi.Do()

 

Used by: ScatterPlot module

 

 

See Also

Automation Model