MinorTicksColor - property of the tvScale object
Description:
Color of minor ticks (shorter ones) of the scale (at these ticks are no legends).
Syntax:
String MinorTicksColor
Note:
Property access
for read and write.
The default value of this property is defined in the "
Color of ticks" configurator of this object.
This property is also functional in
Web panels.
The property returns or sets the
RGB String in the form
"#RRGGBB".
Example1:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var oScaleTime = oTView.ScaleTime;
var oScaleValue = oTView.ScaleValue;
oScaleTime.MinorTicksColor = "#000080";
oScaleValue.MinorTicksColor = "#000080";
Dim oTView, oScaleTime, oScaleValue
Set oTView = pMe.Items("../TrendView")
Set oScaleTime = oTView.ScaleTime
Set oScaleValue = oTView.ScaleValue
oScaleTime.MinorTicksColor = "#000080"
oScaleValue.MinorTicksColor = "#000080"