Re: [Matplotlib-users] Xtick label size in ImageGrid

2010-10-19 Thread Justin McCann
On Fri, Oct 8, 2010 at 11:10 PM, Jae-Joon Lee wrote: > The label_mode need to be capital "L", instead of "l". I guess this > will fix your first problem. > While we make "l" same as "L", but I think it actually degrade the > readability of the code, and I;m inclined to leave it as is. Let me > kno

Re: [Matplotlib-users] Xtick label size in ImageGrid

2010-10-08 Thread Jae-Joon Lee
Eric, ax = subplot(111) ax.tick_params(labelsize='x-small') print ax.xaxis.majorTicks[0]._size it sets Tick._size instead of Tick._labelsize, which seems to be a bug. I think the below patch fixes this. Can you check (and commit if correct)? Regards, -JJ diff --git a/lib/matplotlib/axis.py b

Re: [Matplotlib-users] Xtick label size in ImageGrid

2010-10-08 Thread Jae-Joon Lee
The label_mode need to be capital "L", instead of "l". I guess this will fix your first problem. While we make "l" same as "L", but I think it actually degrade the readability of the code, and I;m inclined to leave it as is. Let me know if you have any suggestions though. On Sat, Oct 9, 2010 at 5:

[Matplotlib-users] Xtick label size in ImageGrid

2010-10-08 Thread Justin McCann
I just refactored some custom code to make use of axes_grid1.ImageGrid, and I think I've come across a bug (see below). It looks like the tick labelsize doesn't get passed properly to the parasite axes. I'm using Python2.6, matplotlib-1.0.0 release, and the Qt4Agg backend. Also, I noticed that th