We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With #29, we added support for fetching other types of widget by name and passing the session. An example:
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))
We should add that example to the README
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With #29, we added support for fetching other types of widget by name and passing the session. An example:
We should add that example to the README
The text was updated successfully, but these errors were encountered: