python/plotly/\343\202\260\343\203\251\343\203\225\343\201\256\350\241\250\347\244\272\347\257\204\345\233\262\343\202\222\346\214\207\345\256\232\343\201\231\343\202\213.md
... ...
@@ -0,0 +1,12 @@
1
+[python - Is there a way to start a plot already zoomed on a specific area using plotly? - Stack Overflow](https://stackoverflow.com/questions/54863027/is-there-a-way-to-start-a-plot-already-zoomed-on-a-specific-area-using-plotly)
2
+
3
+```python
4
+fig.update_layout(
5
+ xaxis=dict(
6
+ range=(1300, 6000),
7
+ ),
8
+ yaxis=dict(
9
+ range=(4000, 800),
10
+ ),
11
+)
12
+```
... ...
\ No newline at end of file