awvSetXAxisLabel
awvSetXAxisLabel(w_windowID t_label[?subwindowx_subwindow] ) =>t/nil
Description
Replaces the automatically computed label of the x axis with the specified label in a subwindow of the specified Waveform window.
Arguments
|
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
Examples
The following example sets the label for the x axis to Time in nanosecond in the subwindow 2 of the current Waveform window.
win=awvGetCurrentWindow()
=> window:11
awvSetXAxisLabel(win "Time in nanosecond" ?subwindow 2)
=> t
The following example sets the label for the x axis to Time in second in the current subwindow of the specified Waveform window.
awvSetXAxisLabel(window(12) "Time in second")
=> t
Return to top