The ScatterPlotYOffset option changes the Y position of the label for a ScatterPlot module. The OptionValue is set to any number between -100 and +100. Negative values move the label below the symbol. Positive values move the label above the symbol.
Syntax
object.Construct(“CreateModule”)
object.Option(“Type”, “ScatterPlot”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “ScatterPlot”)
object.Option(“ScatterPlotYOffset”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to change the scatter plot label's Y position.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "ScatterPlot")
CommandApi.Option ("ScatterPlotYOffset", "-50")
CommandApi.Do()
Used by: ScatterPlot module
See Also