Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Tick label rotation via `set_tick_params` #6829
Conversation
mdboom
added the
needs_review
label
Jul 25, 2016
tacaswell
commented on an outdated diff
Jul 25, 2016
tacaswell
added this to the
2.1 (next point release)
milestone
Jul 25, 2016
|
Can you add a test? I don't think this needs an image test, just verify that the rotation value ends up correctly on the tick labels. |
|
I added this test to do assertion of label rotation. Is that sufficient? |
|
|
|
Sorry, one last thing, can you also update the docstrings in |
|
Yup, done. |
tacaswell
merged commit d308eec
into matplotlib:master
Jul 27, 2016
tacaswell
removed the
needs_review
label
Jul 27, 2016
tacaswell
referenced
this pull request
Aug 2, 2016
Closed
suggestion: set_xticklabels and set_yticklabels default to current labels #6795
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
bcongdon commentedJul 25, 2016
Addresses #6795.
Implemented @tacaswell's suggestion so that commands such as
ax.xaxis.set_tick_params(which='both', rotation=90)are now possible.Added related test and whats_new entry.