Hi everyone, Iβm having a problem when I export my notebook in Jupyterlab to HTML my plots I generated from plotly lose the interactive aspect. I have been able to export before and plotly stays interactive.
Iβm using plotly 3.4.0 and jupyter labextension @jupyterlab/plotly-extension v0.18.0
Code:
from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot
import plotly.offline as po
fig = go.Figure(data=data, layout=layout)
interactive = iplot(fig)
Has anyone come across this before?