TableHeadTextColor - property of the PmgTrendViewer object
Description:
Color of head legends in the table mode.
Syntax:
String TableHeadTextColor
Note:
Property access
for read and write. The preset value of this property is defined in the "
Table head text color" configurator of this object.
The property is used only if the table mode is set.
The property returns/sets the RGB String in the form "#RRGGBB".
Example1:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var sTableHeadTextColor = oTView.TableHeadTextColor; //reading
oTView.TableHeadTextColor = "#00ff00"; //writing
Dim oTView, sTableHeadTextColor
Set oTView = pMe.Items("../TrendView")
sTableHeadTextColor = oTView.TableHeadTextColor 'reading
oTView.TableHeadTextColor = "#00ff00" 'writing