*BeginTensorPlotViewSettings()
Contains a list of tensor plot view settings including the legend settings.
Syntax
*BeginTensorPlotViewSettings()
Application
HyperView
Context
*BeginModel()
Substatements
| *Scale() | *TextColor() | 
| *DisplayMode() | *LegendMaxThreshold() | 
| *ColorMode() | *LegendMinThreshold() | 
| *DrawValues() | *Multiplier() | 
| *DrawPrefix() | *BeginLegend() | 
| *ShearScale() | *EndLegend() | 
| *Font() | 
Example
*BeginTensorPlotViewSettings()
       *Scale(normalize, 1)
       *DisplayMode("Regular")
       *ColorMode(Legend)
       *DrawValues("Normal", "Off")
       *DrawPrefix("Normal", "On")
       *DrawValues("Shear", "Off")
       *DrawPrefix("Shear", "On")
       *ShearScale(0.4)
       *Font("Noto Sans", "regular", "regular", 10)
       *TextColor(1)
       *LegendMaxThreshold("On", 100)
       *LegendMinThreshold(On, 10)
       *Multiplier(2)
       *HeadType("Arrow")
       *BeginLegend()
             ...
       *EndLegend()
*EndTensorPlotViewSettings()
      Comments
*BeginTensorPlotViewSettings() must have a corresponding *EndTensorPlotViewSettings() statement to mark the end of the tensor plot view settings.