PointsVisible - property of the tvTrend object
Description:
Visibility of trend data points mark.
Syntax:
Boolean PointsVisible
Note:
Property access
for read and write. The preset value of this property is defined in the "
Graphic mode > Points > Visibility" configurator of this object.
The property is used only if the graphic mode is set.
By
reading from the property the value
true is got if at least one
tvGraph object has set this property to the value
true, otherwise it returns
false.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var oTrend = oTView.Trends(0);
if (oTrend)
{
var bVisible = oTrend.PointsVisible; //reading
//or
oTrend.PointsVisible = false; //writing
}
Dim oTView, oTrend
Set oTView = pMe.Items("../TrendView")
Set oTrend = oTView.Trends(0)
If Not oTrend Is Nothing Then
Dim bVisible
bVisible = oTrend.PointsVisible 'reading
'or
oTrend.PointsVisible = false 'writing
End If