Color - property of the tvGrid object
Description:
Color of grid lines.
Note:
Property access
for read and write.
The default value of this property is defined in the "
Color" 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 oGridTime = oTView.GridTime;
var oGridValue = oTView.GridValue;
oGridTime.Color = "#808080";
oGridValue.Color = "#808080";
oTView.Draw();
Dim oTView, oGridTime, oGridValue
Set oTView = pMe.Items("../TrendView")
Set oGridTime = oTView.GridTime
Set oGridValue = oTView.GridValue
oGridTime.Color = "#808080"
oGridValue.Color = "#808080"
oTView.Draw