From: John H. <jdh...@ac...> - 2005-03-05 13:43:35
|
>>>>> "Alex" == Alex Rada <ale...@ya...> writes: Alex> Hi all, I'm trying to make some nice plots, but I have the Alex> following problem. I think that ticks labels are too close Alex> to axes. Are there some trics to set this distance? Set these two parameters in matplotlibrc http://matplotlib.sf.net/.matplotlibrc tick.major.pad : 4 # distance to major tick label in points tick.minor.pad : 4 # distance to the minor tick label in points You can also set rc parameters with the rc function. |