tick.labelsize?

rcParams[‘tick.labelsize’] is not working? How to set tick label size in another way?

py23 + pylab07

Thanks.

Hi,

I havent had trouble with this. Could you first make sure that you are
changing your rc settings before importing from pylab? This works for my on
MPL 0.72.1, python 2.3:

import matplotlib
matplotlib.rcParams['tick.labelsize']=6
from pylab import *
plot([1,2,3,4])
show()

If that doesnt work, please post a short script that will reproduce the
behavior.

Darren

···

On Tuesday 22 March 2005 05:17 pm, Haibao Tang wrote:

rcParams['tick.labelsize'] is not working? How to set tick label size in
another way? py23 + pylab07

Thanks.