The ScatterPlotLabelAlignment option changes the justification of labels for a ScatterPlot module. The OptionValue is set to 0, 1, or 2. 0 is left justified. 1 is right justified. 2 is center justified.
This command is replaced by the ScatterPlotLabelJustification option.
Syntax
object.Construct(“CreateModule”)
object.Option(“Type”, “ScatterPlot”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “ScatterPlot”)
object.Option(“ScatterPlotLabelAlignment”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to change the label alignment for scatter plots.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "ScatterPlot")
CommandApi.Option ("ScatterPlotLabelAlignment", "1")
CommandApi.Do()
Used by: ScatterPlot module
See Also