Returns the rightmost x coordinate in a Window.
GETXR(win)
win |
- |
Optional. Window reference. Defaults to the current Window. |
A real number.
W1: gnorm(1000, 1);setx(100, 200);
xr = getxr(w1);
xr == 200
creates a 1000 point series and sets the display range from 100 to 200. The right hand value is returned.
setx(getxl(W2), getxr(W2))
sets the current Window's x-axis range to be the same as that of
Window 2.
setx(2*getxl, 2*getxr)
doubles the x-range.
See GETYR to return the rightmost y value of a series displayed in a Window.
See GETXDATE to return the x-axis coordinates in date values for a series with a date horizontal units.
See GETXTIME to return the x-axis coordinates in time values for a series with a time horizontal units.