On Wed, Sep 17, 2008 at 3:28 AM, De Pauw Antoine <[EMAIL PROTECTED]> wrote:

> The image generated is here:
> http://www.kirikoo.net/images/5shrad-20080917-102544.png
>
> Also, I couldn't find any way to reduce the colorbar font size

The colorbar method returns a matplotlib.colorbar.Colorbar instance,
which has matplotlib.axes.Axes instance stored as an attribute.  Thus
you can do:

cb = colorbar(something....)

for t in cb.get_yticklabels():
    t.set_fontsize(10)

Eric: when you get some time, could you add docstrings to colorbar
which document the publicly accessible attributes?

JDH

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to