Re: [Matplotlib-users] Setting tick labelsize programatically

2008-11-05 Thread Joshua J. Kugler
On Wednesday 05 November 2008, Stan West said something like: > > -Original Message- > > From: Joshua J. Kugler [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, November 04, 2008 18:39 > > > > On Tuesday 04 November 2008, Joshua J. Kugler said something like: > > > > Here is one way to do it::

Re: [Matplotlib-users] Setting tick labelsize programatically

2008-11-05 Thread Stan West
> -Original Message- > From: Joshua J. Kugler [mailto:[EMAIL PROTECTED] > Sent: Tuesday, November 04, 2008 18:39 > > On Tuesday 04 November 2008, Joshua J. Kugler said something like: > > > Here is one way to do it:: > > > > > > for label in ax.get_xticklabels() + ax.get_yticklabels()

Re: [Matplotlib-users] Setting tick labelsize programatically

2008-11-04 Thread Joshua J. Kugler
On Tuesday 04 November 2008, Joshua J. Kugler said something like: > > Here is one way to do it:: > > > > for label in ax.get_xticklabels() + ax.get_yticklabels(): > >label.set_fontsize(12) > > > > But the artist tutorial above will give you a more in-depth > > explanation of the variou

Re: [Matplotlib-users] Setting tick labelsize programatically

2008-11-04 Thread Joshua J. Kugler
On Tuesday 04 November 2008, John Hunter said something like: > On Tue, Nov 4, 2008 at 3:13 PM, Joshua J. Kugler <[EMAIL PROTECTED]> wrote: > > [Trying one more time.] > > > > I've read docs, search the list archive, and tried to step through > > code. > > The docs you are looking for are > http:/

Re: [Matplotlib-users] Setting tick labelsize programatically

2008-11-04 Thread John Hunter
On Tue, Nov 4, 2008 at 3:13 PM, Joshua J. Kugler <[EMAIL PROTECTED]> wrote: > [Trying one more time.] > > I've read docs, search the list archive, and tried to step through code. The docs you are looking for are http://matplotlib.sourceforge.net/users/artists.html. > How can I set things like xt

[Matplotlib-users] Setting tick labelsize programatically

2008-11-04 Thread Joshua J. Kugler
[Trying one more time.] I've read docs, search the list archive, and tried to step through code. How can I set things like xtick.labelsize and ytick.labelsize via the object oriented interface? I have a graph object, and I can't find anywhere in the data structure for the completed graph wh