On Mon, May 3, 2010 at 1:12 PM, Christopher Brown <c...@asu.edu> wrote:
> Hi List,
>
> How can I change the (fore)color of a figure title (pp.title('Wow!'))
> after it has been added to the figure? I can do this with axes labels
> like this:
>
> pp.gca().axes.xaxis.label.set_color(color)

pp.gca().axes.title.set_color(color)

You can also save the return value from pp.title:

t = pp.title('Wow!')

t.set_color(color)

Ryan

-- 
Ryan May
Graduate Research Assistant
School of Meteorology
University of Oklahoma

------------------------------------------------------------------------------
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to