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/axes.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
@@ -456,7 +456,7 @@ You can adjust tick label positions by moving them a number of pixels away from
456
456
457
457
In this example, `ticklabelshift=25` shifts the labels 25 pixels to the right along the x-axis. By providing a negative value, we could move the labels 25 pixels to the left, (`ticklabelshift=-25`).
458
458
459
-
Here, `ticklabelstandoff=15` moves the labels further 15 pixels away from the x-axis. A negative value here would move them close to the axis.
459
+
Here, `ticklabelstandoff=15` moves the labels 15 pixels further away from the x-axis. A negative value here would move them closer to the axis.
460
460
461
461
```python
462
462
import plotly.express as px
@@ -483,7 +483,7 @@ fig.show()
483
483
484
484
On date or linear axes, use `ticklabelindex` to draw a label for a minor tick instead of a major tick.
485
485
486
-
To draw the label for the minor tick before each major tick, set `ticklabelindex` -1, like in the following example.
486
+
To draw the label for the minor tick before each major tick, set `ticklabelindex=-1`, like in the following example.
0 commit comments