TicksColor - property of the tvScale object
Description:
Color of scale main ticks legends (longer ones, at these ticks are legends).
Note:
Property access
for read and write. The preset value of this property is defined in the "
Color of ticks" configurator of this object.
The property returns/sets the RGB String in the form "#RRGGBB".
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var oScaleTime = oTView.ScaleTime;
var oScaleValue = oTView.ScaleValue;
oScaleTime.TicksColor = "#000080";
oScaleValue.TicksColor = "#000080";
Dim oTView, oScaleTime, oScaleValue
Set oTView = pMe.Items("../TrendView")
Set oScaleTime = oTView.ScaleTime
Set oScaleValue = oTView.ScaleValue
oScaleTime.TicksColor = "#000080"
oScaleValue.TicksColor = "#000080"