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