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
I have plotly interactive graphs on a jupyterlab notebook, it works fine on jupyterlab. But when I tried to export the notebook to html (File -> Export Notebook As -> Export Notebook to html), the html file opened has the graph but it's not interactive anymore.
Below is the code snippet I have in the notebook
import plotly.io as pio
pio.renderers.default = "jupyterlab"
import plotly.express as px
fig =px.scatter(x=range(10), y=range(10))
fig.show("jupyterlab")
And when I opened the Chrome develop tool, it shows below
Do you know if any way to enable that the plotly graph shown interactively in the exported jupyterlab notebook html file? Thanks!