ScatterPlotFont Option

 

The ScatterPlotFont option changes the font for the labels on a ScatterPlot module. The OptionValue is the name of the font.

 

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

object.Do() or object.DoOnce()

 

Example

This example changes the font to display for the labels on a scatter plot.

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("ScatterPlotFont", "Arial")

  CommandApi.Do()

 

Used by: ScatterPlot module

 

 

See Also

Automation Model