The VectorPlotVectorStyle option changes the style of the arrows on a VectorPlot. The OptionValue is 0, 1, 2, 3, 4, or 5 for Line, Arrow2, Arrow4, ArrowCross, ArrowSolid, or Fade.
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(“VectorPlotVectorStyle”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the arrow head for VectorPlot.
CommandApi.Construct("ModifyModule")
CommandApi.Option ("Module", "VectorPlot")
CommandApi.Option ("VectorPlotVectorStyle ", "3")
CommandApi.Do()
Used by: VectorPlot module
See Also