The VectorPlotDotSize option changes the base symbol size for the VectorPlot. The OptionValue is a number between 0 and 48.
Syntax
object.Construct(“CreateModule”)
object.Option(“SourceModule”, “data file name”)
object.Option(“Type”, “VectorPlot”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “VectorPlot”)
object.Option(“VectorPlotDotSize”, “OptionValue”)
object.Do() or object.DoOnce()
Example 1
This example changes the base symbol size for a vector plot.
CommandApi.Construct("ModifyModule")
CommandApi.Option ("Module", "VectorPlot")
CommandApi.Option ("VectorPlotDotSize", "4")
CommandApi.Do()
Used by: VectorPlot module
See Also