gpt4 book ai didi

python - 如何使用 bootstrap 设计我的 Plotly Dash 应用程序?

转载 作者:太空宇宙 更新时间:2023-11-03 20:29:00 25 4
gpt4 key购买 nike

这是我的代码。我正在尝试将两个图表彼此对齐。

最简单的方法是什么?

    ########### Display the chart
app = dash.Dash()
server = app.server

app.layout = html.Div(style={'backgroundColor': '#000000'},children=[
html.H1('Indicator'),
dcc.Graph(
id='Teste1',
figure=client_relation
),

dcc.Graph(
id='Test2',
figure=beer_fig
),


]
)

if __name__ == '__main__':
app.run_server()

最佳答案

我正在使用这段代码。将样式添加为“inline-block”到您的代码中,以使两个图表都在一条直线上。将两个图表包含在一个 html block 中。

dcc.Graph(id='my_graph1',style={'width':1000, 'display': 'inline-block'},
figure=go.Figure(
data =[trace1, trace2],
layout = go.Layout(
title=' nifty',

xaxis=dict(
#domain=[0.03, 0.9]
title='Date',
),
yaxis=dict(
title='Nifty',
side='right',
),
),

dcc.Graph(id='Pie',style={'width': 500, 'display': 'inline-block'},
),

html.Hr(),

希望您能采纳并修改。

关于python - 如何使用 bootstrap 设计我的 Plotly Dash 应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57640924/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com