The ScatterPlotLabelJustification 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 replaces the ScatterPlotLabelAlignment option.
Syntax
object.Construct(“CreateModule”)
object.Option(“Type”, “ScatterPlot”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “ScatterPlot”)
object.Option(“ScatterPlotLabelJustification”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to change the label Justification for scatter plots.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "ScatterPlot")
CommandApi.Option ("ScatterPlotLabelJustification", "1")
CommandApi.Do()
Used by: ScatterPlot module
See Also