AlignValue - property of the tvScale object
Description:
Align value of left/low edge of the scale.
This property is obsolete (but functional) and it is better to use the
tvTicks.AlignValue property.
Syntax:
Variant AlignValue
Note:
Property access
for read and write.
The default value of this property is defined in the "
Align value" configurator of this object.
This property is also functional in
Web panels.
The meaning of this value depends on setting the
AlignType property.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var oScaleTime = oTView.ScaleTime;
var oScaleValue = oTView.ScaleValue;
oScaleTime.AlignValue = 0;
oScaleValue.AlignValue = 0;
Dim oTView, oScaleTime, oScaleValue
Set oTView = pMe.Items("../TrendView")
Set oScaleTime = oTView.ScaleTime
Set oScaleValue = oTView.ScaleValue
oScaleTime.AlignValue = 0
oScaleValue.AlignValue = 0