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
While QA'ing the plotlywidget extension in JupyterLab, I noticed that just rendering go.FigureWidget() results in a figure displaying without the default template, even though fig.layout.template does return the default template. go.FigureWidget().update_layout(template="plotly") also doesn't work as expected but go.FigureWidget(layout=dict(template="plotly")) does.
Commenting out this line does restore the desired behaviour:
While QA'ing the
plotlywidget
extension in JupyterLab, I noticed that just renderinggo.FigureWidget()
results in a figure displaying without the default template, even thoughfig.layout.template
does return the default template.go.FigureWidget().update_layout(template="plotly")
also doesn't work as expected butgo.FigureWidget(layout=dict(template="plotly"))
does.Commenting out this line does restore the desired behaviour:
plotly.py/packages/python/plotly/plotly/basedatatypes.py
Line 1950 in 280e13c
The text was updated successfully, but these errors were encountered: