DADiSP Worksheet Functions > Function Categories > Query Functions > GETXDATE
Returns the x-axis coordinate range of a Window as date values.
GETXDATE(win)
(xldate, xrdate) = GETXDATE(win)
win |
- |
Optional. Window reference. Defaults to the current Window. |
A string, the left hand date value of the displayed data.
(xldate, xrdate) = GETDATE(win) returns both the left and right date strings.
W1:gnorm(1000, 1);setdate("1-1-2030");sethunits("daily");
setxdate(W1, "7-20-2030", "8-24-2031");
(xldate, xrdate) = getxdate(W1);
xldate == "7/20/30"
xrdate == "8/24/31"
creates a 1000 point series with horizontal time units of Daily. The starting date is
The horizontal units of the series must be a date unit such as Daily, Monthly or Yearly.
See SETXDATE to set the x-axis coordinates in date values.
See GETXL and GETXR to return the x-axis coordinates in terms of the delta-x between values.