MinorTicksLength - property of the tvScale object
Description:
Line length of the minor (shorter ones) ticks (in pixels). At these ticks are no legends.
Syntax:
Long MinorTicksLength
Note:
Property access
for read and write. The preset value of this property is defined in the "
Length of ticks" configurator of this object.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var oScaleTime = oTView.ScaleTime;
var oScaleValue = oTView.ScaleValue;
oScaleTime.MinorTicksLength = 3;
oScaleValue.MinorTicksLength = 3;
Dim oTView, oScaleTime, oScaleValue
Set oTView = pMe.Items("../TrendView")
Set oScaleTime = oTView.ScaleTime
Set oScaleValue = oTView.ScaleValue
oScaleTime.MinorTicksLength = 3
oScaleValue.MinorTicksLength = 3