The VectorPlotLineWidth option changes the line width for the VectorPlot. The OptionValue is a number between 0 and 4.
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(“VectorPlotLineWidth”, “OptionValue”)
object.Do() or object.DoOnce()
Example 1
This example changes the Y component of the seed normal.
CommandApi.Construct("ModifyModule")
CommandApi.Option ("Module", "VectorPlot")
CommandApi.Option ("VectorPlotLineWidth", "0.6")
CommandApi.Do()
Used by: VectorPlot module
See Also