MinorTicksWidth - property of the tvScale object
Description:
Line width of minor ticks (shorter ones) (in pixels).
Syntax:
Long MinorTicksWidth
Note:
Property access
for read and write.
The default value of this property is defined in the "
Width of the tick" 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.MinorTicksWidth = 1;
oScaleValue.MinorTicksWidth = 1;
Dim oTView, oScaleTime, oScaleValue
Set oTView = pMe.Items("../TrendView")
Set oScaleTime = oTView.ScaleTime
Set oScaleValue = oTView.ScaleValue
oScaleTime.MinorTicksWidth = 1
oScaleValue.MinorTicksWidth = 1