awvZoomGraphY
awvZoomGraphY(w_windowID l_minMax[?stripNumberx_stripNumber] [?subwindowx_subwindow] ) =>t/nil
Description
Zooms in or zooms out the graph according to the specified y-axis (dependent axis) coordinates.
Arguments
Value Returned
|
The specified Waveform window, subwindow, or the strip does not exist. |
Examples
The following example returns a list of strip numbers of the traces plotted in the current subwindow of the current Waveform window:
awvGetStripNumbersList(awvGetCurrentWindow() ?subwindow awvGetCurrentSubwindow(awvGetCurrentWindow()))
=> (3 1 2)
The following examples zoom in the y axis from y=750mV to y=900mV of the trace with the strip number 2 in the current subwindow of the current Waveform window.
awvZoomGraphY(awvGetCurrentWindow() 750m:900m ?stripNumber 2 ?subwindow awvGetCurrentSubwindow(awvGetCurrentWindow()))
=> t
awvZoomGraphY(awvGetCurrentWindow() list(750m 900m) ?stripNumber 2 ?subwindow awvGetCurrentSubwindow(awvGetCurrentWindow()))
=> t
awvZoomGraphY(awvGetCurrentWindow() list("750mV" "900mV") ?stripNumber 2 ?subwindow awvGetCurrentSubwindow(awvGetCurrentWindow()))
=> t
awvZoomGraphY(awvGetCurrentWindow() 7.5e-1:9e-1 ?stripNumber 2 ?subwindow awvGetCurrentSubwindow(awvGetCurrentWindow()))
=> t
awvZoomGraphY(awvGetCurrentWindow() list(7.5e-1 9e-1) ?stripNumber 2 ?subwindow awvGetCurrentSubwindow(awvGetCurrentWindow()))
=> t
Return to top