ScaleValue - property of the PmgTrendViewer object
Description:
Returns object of the
tvScale type (value scale).
Syntax:
Object ScaleValue
Note:
Property access for
read only.
This property is also functional in
Web panels.
The property is used only if the
graphic mode is set.
Example:
Setting the
LabelDistance property (the distance of the scale legends from the scale ticks) of the
tvScale object.
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var oScaleValue = oTView.ScaleValue;
oScaleValue.LabelDistance = 4;
Dim oTView
Set oTView = pMe.Items("../TrendView")
Dim oScaleValue
Set oScaleValue = oTView.ScaleValue
oScaleValue.LabelDistance = 4