deephaven / deephaven-core

Deephaven Community Core
Other
251 stars 80 forks source link

Cannot specify xRange or yRange of plot #1112

Open nbauernfeind opened 3 years ago

nbauernfeind commented 3 years ago

Query:

t = emptyTable(2000).update("x = (ii - 1000) / 100", "F_x = x * 3 / 4")
plot_F_d = plot("F_x", t, "x", "F_x").yRange(-20, 20).xRange(-20, 20).show()

Expected behavior: The drawn plot shows specifically the targeted yRange and xRange of my function.

Actual behavior: The drawn plot disregards the provided values.

nbauernfeind commented 3 years ago

I believe this is a web-client-ui bug. The same behavior exists in DHE (qa-bard). (pinging you @mofojed just as a courtesy fyi -- Colin is planning to do the initial triage.)

mofojed commented 3 years ago

Web UI does not currently support xRange or yRange (along with many other plotting features)

niloc132 commented 3 years ago

Moved to backlog, probably should be shifted to the web ui project.