TimeZoomMax - property of the PmgTrendViewer object
Description:
Maximum limit of setting the range (length) of the viewer time axis. It is not possible to set the range of the viewer time axis greater than the TimeZoomMax.
Syntax:
Variant TimeZoomMax
Values:
numeric value - The length is set as a real number that means the number of days (e.g. 0.5 means a half day). The value -1 means that the maximum limit of setting the range is not restrained.
string value - The time span can be set in text form. In this case it is represented by a real number followed by the time unit identifier (sec,min,hour,day). Example: "1.5sec", "1min30sec".
Note:
Property access
for read and write. The preset value of this property is defined in the "
Maximal time axis range" configurator of this object.
The property is used only if the graphic mode is set.
When reading from the property, the numeric value is always returned.
Initial value is set to 1460, which corresponds to 4 years.
Example1:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
oTView.TimeZoomMax = 1.5;
Dim oTView
Set oTView = pMe.Items("../TrendView")
oTView.TimeZoomMax = 1.5
Example2:
JavaScriptVBScriptSelect and copy to clipboard
oTView.TimeZoomMax = "0.5day";
oTView.TimeZoomMax = "0.5day"
Example3:
JavaScriptVBScriptSelect and copy to clipboard
oTView.TimeZoomMax = "1hour30min";
oTView.TimeZoomMax = "1hour30min"