-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Add rcParams to enable/disable minor ticks on axes separately issue #3024 #4220
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
Conversation
0973a4e
to
d48a36b
Compare
I don't think we need svg or pdf tests on this one, the png should be enough. |
Can you also add a note to https://github.com/matplotlib/matplotlib/tree/master/doc/users/whats_new ? |
Updated, let me know if there are any other problems :) |
@@ -1,3 +1,9 @@ | |||
Added ``xtick.minor.visible`` and ``ytick.minor.visible`` key to rcParams | |||
````````````` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The tick line should match the length of the title line
could use `rcParams['xtick.minor.visible'] = True` to enable automatic minor ticks on x axis; update tests_axes; update documentation on whats_new/rcParams. Refer to issue @3024 for details.
Updated, thanks for the suggestion! |
Great! I will merge this once we hear back from travis. |
ENH : Add rcParams to enable/disable minor ticks on axes separately Closes #3024
Thanks crazym for adding those rcParams! Is it possible to update this help documentation? There are many rcParams that aren't described in the help docs including the two described in this thread ... (sorry if it this is an inappropriate place to post this) |
@crazym PRs to the docs are always welcome! |
@crazym, sorry, I meant to ping @radlinsky in my last message |
@tacaswell sorry for the newbie question, but what does PR mean, and if you're saying I can contribute to the help docs, how would I go about doing do? Thanks! |
Hi,
I added two rcParams "xtick.minor.visible" and "ytick.minor.visible" to enable/disable minor ticks for x/y axis respectively, as mentioned in the issue #3024. Hope it helps :)
Thanks
Minty