【发布时间】:2023-03-25 18:25:01
【问题描述】:
我想显示三个并排的图表,每个都占据屏幕的三分之一。现在两个在一起,另一个在他们下面。它们都在第一个选项卡中。
first = html.Div(
[
dcc.Tabs(
[
dcc.Tab(
html.Div(
children=[
dcc.Graph(
figure=sentiment_bar,
style={
"display": "inline-block",
},
),
dcc.Graph(
figure=sentiment_bar,
style={
"display": "inline-block",
},
),
dcc.Graph(
figure=sentiment_bar,
style={
"display": "inline-block",
},
),
],
),
),
dcc.Tab(
label=" PrivacyConcerns ",
children=[dcc.Graph(figure=fig2)],
),
]
)
]
)
【问题讨论】:
标签: python plotly plotly-dash dashboard