So I wanted to set up some plots just like this user asked using dash_bootstrap_components
. I.e. I want plots set up like:
+++++++++++++++++++++++
+ + figure2 +
+ figure1 + +
+ + figure3 +
+++++++++++++++++++++++
Caveat: I do not want to put all the plots on the same figure.
Below, I’ve recreated the row that’s within my container that’s giving me a problem:
dbc.Row([
dbc.Col([
dcc.Graph(id = 'map-graph')
],
width = 6),
dbc.Col([
html.Div([
dbc.Row([
dcc.Graph(id = 'another-graph')
]),
dbc.Row([
dcc.Graph(id = 'bar-graph')
])
])
],
width = 6)
], justify = 'between')
Note that I’m using the external style sheet provided in the documentation:
app = dash.Dash(__name__, external_stylesheets=[dbc.themes.BOOTSTRAP])
When I run the app I run into a similar problem that the above-referenced user had (not exact). My empty plots look like this:
+++++++++++++++++++++++
+ figure1 + figure2 +
+ + +
+ + figure3 +
+++++++++++++++++++++++
And I’ve got to scroll down the page to see “figure3”. If anyone knows how to achieve this layout please let me know. I’ve attempted several configurations and none of them are working.