The VectorPlotMinScale option changes the smallest vector symbol scale size for VectorPlot. The OptionValue is a number between 0 and 5.
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(“VectorPlotMinScale”, “OptionValue”)
object.Do() or object.DoOnce()
Example 1
This example changes the minimum vector scale size to 0.7.
CommandApi.Construct("ModifyModule")
CommandApi.Option ("Module", "VectorPlot")
CommandApi.Option ("VectorPlotMinScale", "0.7")
CommandApi.Do()
Used by: VectorPlot module
See Also