awvLogXAxis
awvLogXAxis(
w_windowID
g_state
[ ?subwindow x_subwindow ]
)
=> t / nil
Description
Specifies whether to set the display of x axis to logarithmic in a subwindow of the specified Waveform window.
Arguments
|
w_windowID
|
Waveform window ID.
|
|
g_state
|
Specifies whether to set the display of x axis to logarithmic or linear.
Valid values are:
-
t: Sets the display of x axis to logarithmic. -
nil: Sets the display of x axis to linear.
This argument will not take effect if the display mode is smith.
|
|
?subwindow x_subwindow
|
|
|
Identification number of the subwindow, which is found in the top-right corner of the subwindow.
If you do not specify this argument, label for the x axis is set in the current subwindow.
|
Value Returned
|
t
|
Display of the x axis is set successfully.
|
|
nil
|
The specified Waveform window or subwindow does not exist.
|
Examples
The following example sets the display of the x axis to logarithmic in the subwindow 4 of the specified Waveform window.
awvLogXAxis(window(11) t ?subwindow 4)
=> t
The following example sets the display of the x axis to linear in the subwindow 5 of the specified Waveform window.
awvLogXAxis(window(12) nil ?subwindow 5)
=> t
Return to top