MinorTicksNum - property of the tvScale object
Description:
The number of minor ticks between two main ones. Initial value of this property is -1 (it means that the number is always automatically counted).
Syntax:
Long MinorTicksNum
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var oScaleTime = oTView.ScaleTime;
var oScaleValue = oTView.ScaleValue;
oScaleTime.MinorTicksNum = 3;
oScaleValue.MinorTicksNum = 2;
Dim oTView, oScaleTime, oScaleValue
Set oTView = pMe.Items("../TrendView")
Set oScaleTime = oTView.ScaleTime
Set oScaleValue = oTView.ScaleValue
oScaleTime.MinorTicksNum = 3
oScaleValue.MinorTicksNum = 2