TicksLength - property of the tvScale object
Description:
Line length of main ticks (longer ones, in pixels). The number and location of main ticks is set by properties of the
tvTicks object.
Note:
Property access
for read and write.
The default value of this property is defined in the "
Length of ticks" configurator of this object.
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var oScaleTime = oTView.ScaleTime;
var oScaleValue = oTView.ScaleValue;
oScaleTime.TicksLength = 6;
oScaleValue.TicksLength = 6;
Dim oTView, oScaleTime, oScaleValue
Set oTView = pMe.Items("../TrendView")
Set oScaleTime = oTView.ScaleTime
Set oScaleValue = oTView.ScaleValue
oScaleTime.TicksLength = 6
oScaleValue.TicksLength = 6