我有一个非常普遍的问题:如何在 python 中由 dash-plotly 制作的仪表板中管理分区/图表的布局。假设我有以下代码:
def charts():
data = [go.Bar(
x=['giraffes', 'orangutans', 'monkeys'],
y=[20, 14, 23] )]
return data
app = dash.Dash()
app.layout = html.Div([
html.Div([
dcc.Graph(
id='figure1',
figure=charts()
),
], style={'width': '49%', 'display': 'inline-block'}),
html.Div([
dcc.Graph(
id = 'figure2',
figure=charts()
),
dcc.Graph(
id='figure3',
figure=charts()
)
], style= {'width': '49%', 'display': 'inline-block'})
])
if __name == '__main__':
app.run_server()
我想要的是:
+++++++++++++++++++++++
+ + figure2 +
+ figure1 + +
+ + figure3 +
+++++++++++++++++++++++
但我得到的是:
+++++++++++++++++++++++
+ + figure2 +
+ + +
+ figure1 + figure3 +
+++++++++++++++++++++++
问题在这里:
- 一般来说,如何管理参数来改变布局?
- 使用宽度来管理宽度,但如何管理高度(在这种情况下,我希望图 1 的高度是图 2 或图 3 的两倍)?