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/multiple-axes.md
+62
Original file line number
Diff line number
Diff line change
@@ -352,5 +352,67 @@ fig.show()
352
352
353
353
```
354
354
355
+
### Sync Axes Ticks
356
+
357
+
*New in 5.13*
358
+
359
+
360
+
When you have multiple axes overlayed, each axis by default has its own number of ticks. You can sync the number of ticks on an axis overlayed on another axis by setting `tickmode="sync"`. In this example, we sync the ticks on the `"Total bill amount"` axis with the `"Total number of diners"` axis that it overlays.
All of the y-axis properties are found here: https://plotly.com/python/reference/YAxis/. For more information on creating subplots see the [Subplots in Python](/python/subplots/) section.
0 commit comments