FillColor2 - property of the tvGraph object
Description:
Color of graph filling.
This color is used for filling only if the
FillType property is set to 11 or 12, i.e. to the filling type that uses more colors for filling up the graph area.
Syntax:
String FillColor2
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var oGraphDef = oTView.Trends("t1").GraphDefault;
oGraphDef.FillColor2 = "#00ff00";
// Writing into the property
oTView.Draw();
Dim oTView, oGraphDef
Set oTView = pMe.Items("../TrendView")
Set oGraphDef = oTView.Trends("t1").GraphDefault
oGraphDef.FillColor2 = "#00ff00"
' Writing into the property
oTView.Draw