I've increased the font of my ticklabels successfully, but now they're too close to the axis. I'd like to add a little breathing room between the ticklabels and the axis.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
It looks like matplotlib respects these settings as rcParams:
Set those before you create any figures and you should be fine. I've looked at the source code and there doesn't appear to be any other way to set them programmatically. (tick.set_pad() looks like tries to do the right thing, but the padding seems to be set when the Ticks are constructed and can't be changed after that.) |
||||
|
|
|
For completeness I'll add that it's also also possible to use
But this is ugly, and in my opinion, it's nicer to just use set |
|||
|
|