awvSetLegendPos
awvSetLegendPos(w_windowID t_legendPosition[?subwindowx_subwindow] )=>t / nil
Description
Sets the position of the trace legend in a graph.
Arguments
Value Returned
|
Position of the trace legend cannot be set because of an error. |
Examples
The following example sets the position of the trace legend to above for the graph in subwindow 2 of the current Waveform window.
win=awvGetCurrentWindow()
=> window:10
awvSetLegendPos(win "above" ?subwindow 2)
=> t
The following example sets the position of the trace legend to inside for the graph in subwindow 3 of the specified Waveform window.
awvSetLegendPos(window(11) "inside" ?subwindow 3)
=> t
Return to top