GridTime - property of the PmgTrendViewer object
Description:
Returns object of the tvGrid type (vertical lines of grid on time axis).
Note:
Property access for
read only.
The property is used only if the graphic mode is set.
Example:
Setting the
Visible property (the visibility of vertical lines of the grid) of the
tvGrid object.
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var oGridTime = oTView.GridTime;
oGridTime.Visible = true;
Dim oTView, oGridTime
Set oTView = pMe.Items("../TrendView")
Set oGridTime = oTView.GridTime
oGridTime.Visible = true