%HI_ResetGraphZoom function


Function
The function cancels the zoom used for given axis in displayer of the Graph or XY Graph types.
Declaration
%HI_ResetGraphZoom(
   INT in refId, 
   BOOL in bResetX, 
   BOOL in bResetY, 
 ) 
Parameters
refIdReference to a displayer (reference variable).
bResetXCancels the zoom used on the X-axis (time zoom). Possible values:
  • @TRUE - cancel the zoom
  • @FALSE - no change
bResetYCancels the zoom used on Y-axis (value zoom). Possible values:
  • @TRUE - cancel the zoom
  • @FALSE - no change
Example
%HI_ResetGraphZoom(_Graph, @TRUE, @FALSE)

The function cancels the zoom used on X-axis (time zoom) and the zoom on Y-axis (if used) remains unchanged.
Napíšte komentár