我希望使用Python API在3行x 2列配置中将6个图表嵌入到Plotly仪表板中。
我期待以下内容: layout of boxes
dashboard.insert(box_1)
dashboard.insert(box_2,'below',1)
dashboard.insert(box_3, 'below', 2)
dashboard.insert(box_4,'right',1)
dashboard.insert(box_5,'right',2)
dashboard.insert(box_6,'right',3)
dash_url = py.dashboard_ops.upload(dashboard, dashboard_name, auto_open=True)
上面的代码没有按照我的顺序呈现它们,我想了解为什么以及正确的方法是什么。