Location - property of the tvScale object
Description:
Location type of the value scale or of the time scale.
Values:
0 - is not drawn
1 - is drawn left/down
2 - is drawn right/up
3 - is drawn on both sides
Note:
Property access
for read and write.
The default value of this property is defined in the "
Location" configurator of this object.
This property is also functional in
Web panels.
Example1:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var oScaleTime = oTView.ScaleTime;
var oScaleValue = oTView.ScaleValue;
oScaleTime.Location = 1;
oScaleValue.Location = 1;
Dim oTView, oScaleTime, oScaleValue
Set oTView = pMe.Items("../TrendView")
Set oScaleTime = oTView.ScaleTime
Set oScaleValue = oTView.ScaleValue
oScaleTime.Location = 1
oScaleValue.Location = 1