PointsVisible - właściwość obiektu tvGraph
Składnia:
Boolean PointsVisible
Przykład1:
Ustawia widoczność punktów dla pojedyńczych obiektów tvGraph
JavaScriptVBScriptWybierz oraz skopiuj do schowka
var oTView = pMe.Items("../TrendView");
var oTrend = oTView.Trends("t1");
var oGraph = oTrend.AddGraph(1, 0, "LimitVal(gt;100)");
oTrend.GraphDefault.PointsVisible = true;
if (oGraph)
{
oGraph.PointsVisible = true;
}
Dim oTView, oTrend, oGraph
Set oTView = pMe.Items("../TrendView")
Set oTrend = oTView.Trends("t1")
Set oGraph = oTrend.AddGraph(1, 0, "LimitVal(gt;100)")
oTrend.GraphDefault.PointsVisible = true
If Not oGraph Is Nothing Then
oGraph.PointsVisible = true
End If
Przykład2:
Ustawia widoczność punktów dla wszystkich obiektów tvGraph
JavaScriptVBScriptWybierz oraz skopiuj do schowka
var oTView = pMe.Items("../TrendView");
var oTrend = oTView.Trends("t1");
var oGraph = oTrend.AddGraph(1, 0, "LimitVal(gt;100)");
oTrend.PointsVisible = true;
Dim oTView, oTrend, oGraph
Set oTView = pMe.Items("../TrendView")
Set oTrend = oTView.Trends("t1")
Set oGraph = oTrend.AddGraph(1, 0, "LimitVal(gt;100)")
oTrend.PointsVisible = true