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 "
tvTrend > Graphic mode > Points > Visibility" configurator of this object.
This property is also functional in
Web panels.
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 from the property
// or
oTrend.PointsVisible = false;
// Writing into the property
}
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 from the property
' or
oTrend.PointsVisible = false
' Writing into the property
End If