Is it possible to create subplots with FigureWidget() or is it only possible with tools.make_subplots()? In my experience FigureWidget() is faster and in JupyterLab the image is displayed scaled instantly to the width of the notebook.
A more general question: What is FigureWidget()? Is it aimed to replace the traditional way (with traces, data and iplot…) or was it mainly created to facilitate new interactivity features?
You can create a FigureWidget with subplots using tools.make_subplots by passing the Figure produced by make_subplots to the FigureWidget constructor. For example.
...
fig = go.FigureWidget(make_subplots(...))
A more general question: What is FigureWidget() ? Is it aimed to replace the traditional way (with traces, data and iplot…) or was it mainly created to facilitate new interactivity features?
@jmmease can FigureWidget() be used outside of Jupyter environments?
I’ve tried it in VS-Code but it does not show anything, so I’m wondering if that’s possible.