hello new to plotly.
currently trying to create one dashboard while creating it having problem in alignments.
here is the code .
app = Dash(__name__)
app.layout = html.Div([
dbc.Col
(
[
dbc.Row(html.H1(children='NIFTY ENERGY INDEX', style={'textAlign':'center'})),
dbc.Row(dcc.Graph(figure=fig_line)),
dbc.Row(dcc.Graph(figure=fig_candle)),
dbc.Row(dcc.Graph(figure=fig_Weekly)),
dbc.Row(
[
dbc.Col(dcc.Graph(figure=fig_monthly)),
dbc.Col(dcc.Graph(figure=fig_quarterly)),
dbc.Col(dcc.Graph(figure=fig_yearly))
]
)
]
)
])
screenshot of dashboard
how to make those figures of nifty weekly,monthly comes in one single row.