Do Databricks ipywidgets support plotly FigureWidget?

Cosimo_F_
Contributor

Hello,

I'm trying to use plotly's FigureWidget but getting this error:

"Error displaying widget: Cannot read properties of undefined (reading 'buffer')"

This is the code

from plotly import graph_objects as go

from plotly import express as px

from plotly import data as pld

df = pld.iris()

fig = px.bar(df, x='sepal_length', y='sepal_width')

fig_widget = go.FigureWidget(fig)

display(fig_widget)

DBR 11.2

Thank you,

Cosimo.