You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Are the current deephaven plotly widgets usable via the Python client (to render in Jupyter)?
Are deephaven.ui components usable via the Python client (to render in Jupyter)?
I can declare them on the server side – but given the types are not known to the client, even if I pull them over to the client, how would I render them on the client?
Fetch by the name:
from pydeephaven import Session from deephaven_ipywidgets import DeephavenWidget session = Session(auth_token="iris", auth_type="io.deephaven.authentication.psk.PskAuthenticationHandler") session.run_script(""" from deephaven import empty_table from deephaven.plot.figure import Figure t = empty_table(100).update(["X=i", "Y=i*i"]) f = Figure().plot_xy(series_name="X vs Y", t=t, x="X", y="Y").show() """) display(DeephavenWidget("f", session=session))
Reviewer = @pete-petey
The text was updated successfully, but these errors were encountered: