FillColor - property of the tvGraph object
Description:
Color of the graph filling.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var oGraphDef = oTView.Trends("t1").GraphDefault;
oGraphDef.FillColor = "#00ff00";
// Writing into the property
oTView.Draw();
Dim oTView
Set oTView = pMe.Items("../TrendView")
Dim oGraphDef
Set oGraphDef = oTView.Trends("t1").GraphDefault
oGraphDef.FillColor = "#00ff00"
' Writing into the property
oTView.Draw