How do I change the font size for the default coordinates?

I've searched the user manual (and this forum) but I don't see anything that
helps.

···


View this message in context: http://www.nabble.com/How-do-I-change-the-font-size-for-the-default-coordinates--tp16191876p16191876.html
Sent from the matplotlib - users mailing list archive at Nabble.com.

Assuming you mean what we call the tick labels:

import matplotlib
matplotlib.rcParams['xtick.labelsize'] = 14
matplotlib.rcParams['ytick.labelsize'] = 14

These can also be changed in your matplotlibrc file -- see
http://matplotlib.sf.net/matplotlibrc

JDH

···

On Thu, Mar 20, 2008 at 7:32 PM, carlwenrich <carlwenrich@...9...> wrote:

I've searched the user manual (and this forum) but I don't see anything that
helps.