awvSetXAxisStepValue
awvSetXAxisStepValue(w_windowID x_stepSize[?subwindowx_subwindow] ) =>t/nil
Description
Sets the step size for the major divisions of x axis in the specified graph. The step value indicates the spacing between major divisions of x axis.
Arguments
Value Returned
|
Step size for the major divisions of x axis is set successfully. |
|
|
Either the specified step size is not a valid number or the specified Waveform window or subwindow does not exist. |
Examples
The following examples set the step size for the major divisions of x axis to 100ns in the subwindow 2 of the current Waveform window.
awvSetXAxisStepValue(awvGetCurrentWindow() 100n ?subwindow 2)
=> t
awvSetXAxisStepValue(awvGetCurrentWindow() 100ns ?subwindow 2)
=> t
awvSetXAxisStepValue(awvGetCurrentWindow() 1e-7 ?subwindow 2)
=> t
Return to top