PointsVisible - property of the tvTrend object
Description:
Visibility of trend data points mark.
Syntax:
Boolean PointsVisible
Note:
Property access
for read and write.
The default 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
true value is got if at least one
tvGraph object has set this property to the
true value, otherwise returns the
false value.
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
Set oTView = pMe.Items("../TrendView")
Dim oTrend
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