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
When displaying some plotly JSON content the viewport does not update on subsequent changes of the data. However closing and reopening the notebook does indeed display the updated plot, suggesting that there might be a problem with the renderer itself.
Example code:
out= {}
out['application/vnd.plotly.v1+json'] = {
"data": [
{
"x": [
"giraffes",
"orangutans",
"monkeys"
],
"y": [
20,
14,
23
],
"type": "bar"
}
]
}
h=display(out, raw=True, display_id=True)
# This does not update the rendered view # however closing and reopening the notebook doesout['application/vnd.plotly.v1+json']['data'][0]['y'][0] =10;
h.update(out, raw=True)
No error is reported in the developer console
Environment:
Output of command jupyter labextension list:
JupyterLab v3.0.6
/usr/share/jupyter/labextensions
@jupyter-widgets/jupyterlab-manager v3.0.0 enabled OK
Other labextensions (built into JupyterLab)
app dir: /home/giulio/.jupyter/lab/appdir
jupyterlab-plotly v4.14.3 enabled OK
The text was updated successfully, but these errors were encountered:
Hi - we are trying to tidy up the stale issues and PRs in Plotly's public repositories so that we can focus on things that are still important to our community. Since this one has been sitting for several years, I'm going to close it; if it is still a concern, please add a comment letting us know what recent version of our software you've checked it with so that I can reopen it and add it to our backlog. Thanks for your help - @gvwilson
When displaying some plotly JSON content the viewport does not update on subsequent changes of the data. However closing and reopening the notebook does indeed display the updated plot, suggesting that there might be a problem with the renderer itself.
Example code:
No error is reported in the developer console
Environment:
Output of command
jupyter labextension list
:The text was updated successfully, but these errors were encountered: