Skip to content

Commit 75af440

Browse files
committed
fix wording
1 parent 3ecefef commit 75af440

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/python/configuration-options.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ fig.show(config=config)
327327

328328
*New in 6.3*
329329

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'`.
331331

332332
```python
333333
import plotly.graph_objects as go
@@ -348,7 +348,7 @@ fig = go.Figure(
348348
title='Google Stock Price Over Time with Mode Bar Disabled',
349349
xaxis=dict(
350350
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.
352352
modebardisable='zoominout'
353353
),
354354
yaxis=dict(

0 commit comments

Comments
 (0)