Skip to content

Minor ticks and grid lines docs #3693

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 22 commits into from
May 10, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/python/axes.md
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ You can add minor ticks to an axis with `minor`. This takes a `dict` of properti

In the following example, we add minor ticks to the x-axis and then to the y-axis. For the y-axis we add ticks on the outside: `minor = {"ticks":"outside"}`. On the x-axis we've spcified some additional properties to style the minor ticks, setting the length of the ticks with `ticklen` and the color with `tickcolor`. We've also turned on grid lines for the x-axis minor ticks using `showgrid`.

Note: Minor ticks and grid lines are not supported on multi-categorical, log, or 3D axes, or on color bars, ternary plots, polar charts, or geo.
Note: Minor ticks and grid lines are not supported on color bars, ternary plots, polar charts, geo plots, or on multi-categorical, log, or 3D axes.

```python
import plotly.express as px
Expand Down