DataTimeout - property of the PmgTrendViewer object
Description:
Maximum time to wait for data (in seconds), that are asked by individual
tvTrend objects (only objects connected to any server - to data source).
Note:
Property access
for read and write.
The default value is
20 seconds.
This property
is not functional yet in
Web panels
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var nTimeout = oTView.DataTimeout;
// Reading from the property
oTView.DataTimeout = 25;
// Writing into the property
Dim oTView
Set oTView = pMe.Items("../TrendView")
Dim nTimeout
nTimeout = oTView.DataTimeout
' Reading from the property
oTView.DataTimeout = 25
' Writing into the property