[Matplotlib-users] Font size on an axis

2010-01-21 Thread Brian Larsen
Hey all, wow, this seems like it should be an easy thing but I am not finding answers in the gallery or searching the documentation. How does one set the font size on ticklabels and labels for a figure? I would expect something like plot(arange(11), xfontsize=14) to work but I am not

Re: [Matplotlib-users] Font size on an axis

2010-01-21 Thread Pierre de Buyl
Hello, What I do is to set it _before_ plotting through the rcParams. rcParams['xtick.labelsize']=24 There is also the possiblity to change that property afterwards with an argument to xticks. xticks(fontsize=24) Pierre Le 21 janv. 10 à 22:36, Brian Larsen a écrit : How does one set the