PointsVisible - vlastnost objektu tvGraph
Syntaxe:
Boolean PointsVisible
Příklad1:
Nastaví viditelnost zobrazení bodů jednotlivým objektům tvGraph
JavaScriptVBScriptVyber a zkopíruj do schránky
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
Příklad2:
Nastaví viditelnost zobrazení bodů všem objektům tvGraph
JavaScriptVBScriptVyber a zkopíruj do schránky
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