PointsColor - property of the tvTrend object
Description:
Setting the color of the trend data points.
Writing into this property sets desired color value (
RGB String in the form
"#RRGGBB") to all constructed
tvGraph objects into the
tvGraph.PointsColor property.
Syntax:
String PointsColor
Note:
Property access
for read and write.
This property is also functional in
Web panels.
The property is used only if the
graphic mode is set.
The property returns or sets the
RGB String in the form
"#RRGGBB".
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var oTrend = oTView.Trends(0);
oTrend.PointsColor = "#00ff00";
Dim oTView, oTrend
Set oTView = pMe.Items("../TrendView")
Set oTrend = oTView.Trends(0)
oTrend.PointsColor = "#00ff00"