Plot single Figure over multiple Rows in Plotly / Dash

Hi,

I want to stretch my dcc.Graph figure over 2 dbc.Row 's. I have the following code:

from dash import Dash, html
from dash import dcc
import dash_bootstrap_components as dbc

app = Dash(external_stylesheets=[dbc.themes.BOOTSTRAP])

app.layout = html.Div(
        dbc.Row(
            [
                dbc.Col([dcc.Graph(
                    id='figure',
                )])
            ]
        )
)


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

How can I make sure that the figure is visible when I increase the size of it? Basically, I want to prevent the below happening: