You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/python/configuration-options.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -327,7 +327,7 @@ fig.show(config=config)
327
327
328
328
*New in 6.3*
329
329
330
-
Disabling the zoom in, zoom out, and autoscale buttons for specific axes is supported on cartesian axes using the `modebardisable` attribute. In the following example, the zoom in and zoom out buttons are disabled on the `xaxis`, meaning these buttons only zoom in and out on the `yaxis`. Disable the autoscale button using `modebardisable='autoscale'`. You can also disable both autoscaling and zoom buttons using `modebardisable='zoominout+autoscale'`.
330
+
Disabling the zoom in, zoom out, and autoscale buttons for specific axes is supported on cartesian axes using the `modebardisable` attribute. In the following example, the zoom in and zoom out buttons are disabled on the `xaxis`, meaning these buttons only zoom in and out on the `yaxis`. Disable the autoscale button using `modebardisable='autoscale'`. You can also disable the zoom and autoscale buttons using `modebardisable='zoominout+autoscale'`.
331
331
332
332
```python
333
333
import plotly.graph_objects as go
@@ -348,7 +348,7 @@ fig = go.Figure(
348
348
title='Google Stock Price Over Time with Mode Bar Disabled',
349
349
xaxis=dict(
350
350
title='Date',
351
-
# Try zooming in or out using the modebar buttons. These only apply to the yaxis in this exampe.
351
+
# Try zooming in or out using the modebar buttons. These only apply to the yaxis in this exampe.
0 commit comments