Hello,
I am trying to combine a plotly.graph_objects.FigureWidget
with several ipywidgets in a manner that is very similar to this tutorial: https://plot.ly/python/figurewidget-app/
I know that it is possible to enable scroll zoom on the FigureWidget by making use of the config
argument as follows:
import plotly.graph_objects as go
fig = go.FigureWidget(...)
fig.show(config={'scrollZoom':True})
My question is how can I enable this feature when fig
appears in a container widget with other ipywidgets, e.g.
my_widgets = widgets.VBox([fig, ipywidget_1, ipywidget_2]) # enable scrollZoom?
display(my_widgets)
Framed in terms of the plotly tutorial above, the question is how do I enable scrollZoom
on the final chart while having the interactivity from the callbacks?