The VectorPlotScaleMethod option changes the scale method used for the VectorPlot. The OptionValue is 0, 1, or 2 for Linear, Square Root, or Logarthmic.
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(“VectorPlotScaleMethod”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes scaling method to square root.
CommandApi.Construct("ModifyModule")
CommandApi.Option ("Module", "VectorPlot")
CommandApi.Option ("VectorPlotScaleMethod ", "1")
CommandApi.Do()
Used by: VectorPlot module
See Also