-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Closed
Milestone
Description
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:
self._layout_obj._validate = False |