Scroll between multiple subplots

hey experts!
i have a question regarding subplots.
i’m creating plots using this command:

figure = make_subplots(
        rows=4,
        cols=1,
        shared_xaxes=True,
        subplot_titles=subplots_titles,
        vertical_spacing=0.1,
        column_titles=[
            f'title'
        ]
    )

# then creating multiple candlestick graphs

figure.show()


but because i have too many rows, the plots are shrinking a lot, and i cannot see anything.
is there a way to keep the size big, and create a scroll option in the page that opens up? i have not found it anywhere in the documentation…

thanks in advance,
Yaniv

I am having the same issue did you find a solution ?

hi, yes.
you can use:

figure.update_layout(
    title='title',
    autosize=True,
    height=2000
)
figure.update_xaxes(rangeslider=dict(visible=False))
figure.show()