我正在尝试在我的 Dash UI 上呈现图表。我最初在 Jupyter Notebook 上使用 plotly 创建了图表。
我想要做的是在我的 Dash UI 上呈现相同的图表。我正在尝试的代码是:
html.Div([
new_data.iplot(subplots=True, subplot_titles=True, legend=False)
]),
我收到一条错误消息:
TypeError: Object of type 'PlotlyDisplay' is not JSON serializable
无论如何我可以做到这一点吗?我是 Dash 的新手,所以我能得到的任何帮助都会很棒!