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
If I display an ipywidget Output widget as follows:
import plotly.express as px from ipywidgets import Output widget = Output() widget
and then try to fill it with content as follows:
a = list(range(50_000)) with widget: display(px.line(a, a))
the contents disappear after a short time. After running the second cell for a second time, the output persists as expected.
This issue disappears if the display call is fast enough; for example, when I reduce the number of points from 50_000 to 5.
display
50_000
5
The issue happens in both regular JupyterLab and the JupyterLab Notebook interface. It happens in both Chrome and Firefox.
Versions: ipywidgets==8.1.6 IPython=9.1.0 plotly==6.0.1 jupyterlab==4.4.1 jupyterlab-widgets==3.0.14
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If I display an ipywidget Output widget as follows:
and then try to fill it with content as follows:
the contents disappear after a short time. After running the second cell for a second time, the output persists as expected.
This issue disappears if the
display
call is fast enough; for example, when I reduce the number of points from50_000
to5
.The issue happens in both regular JupyterLab and the JupyterLab Notebook interface. It happens in both Chrome and Firefox.
Versions:
ipywidgets==8.1.6
IPython=9.1.0
plotly==6.0.1
jupyterlab==4.4.1
jupyterlab-widgets==3.0.14
disappearing.webm
The text was updated successfully, but these errors were encountered: