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
We are seeing a problem in jupyterlab when a cell that creates a plot runs once the plot is generated file, when run a second time the plot disappears.
for example the 7th cell in Hello Bluesky.ipynb
The text was updated successfully, but these errors were encountered:
This is an unfortunate issue with the notebook cell-based display model. The figure gets put in the cell as a js widget when it is created and shown. The second time through we add things to the same figure, but replace output cell and replace it. Thus the Figure is still alive and will take new data, but it is no longer in a output cell on the screen.
Our approach for fixing this is to create the figure in a dedicated cell, above where RE(...) is called. We have applied this fix to "Hello Bluesky.ipynb" and some others but more remain to be done.
We are seeing a problem in jupyterlab when a cell that creates a plot runs once the plot is generated file, when run a second time the plot disappears.
for example the 7th cell in Hello Bluesky.ipynb
The text was updated successfully, but these errors were encountered: