python - Is there a way to start a plot already zoomed on a specific area using plotly? - Stack Overflow

fig.update_layout(
    xaxis=dict(
        range=(1300, 6000),
    ),
    yaxis=dict(
        range=(4000, 800),
    ),
)