Ticks - property of the tvScale object
Description:
Returns object of the
tvTicks type - specifies the location of main ticks (and thereby at the legends) of the scale on the time axis or on the value axis.
Note:
Property access for
read only.
This property is also functional in
Web panels.
Example1:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var oScaleTime = oTView.ScaleTime;
var oScaleValue = oTView.ScaleValue;
var oTicksScaleTime = oScaleTime.Ticks;
var oTicksScaleValue = oScaleValue.Ticks;
Dim oTView, oScaleTime, oScaleValue, oTicksScaleTime, oTicksScaleValue
Set oTView = pMe.Items("../TrendView")
Set oScaleTime = oTView.ScaleTime
Set oScaleValue = oTView.ScaleValue
Set oTicksScaleTime = oScaleTime.Ticks
Set oTicksScaleValue = oScaleValue.Ticks
Example2:
See examples in the description of the
tvTicks object.