On Sun, Jan 25, 2009 at 9:26 PM, AlsCdz <cadez_a...@siol.net> wrote:
>
> Hello,
> is there any way to color the entire image. Not just in a way:
> http://matplotlib.sourceforge.net/examples/pylab_examples/color_demo.html
> http://matplotlib.sourceforge.net/examples/pylab_examples/color_demo.html
>
> All the white part around the chart. Is it possible to change that color as
> well?

It sounds from your description that you want to change the facecolor
of the figure frame.  You can do this when saving with

  savefig('myfile', facecolor='red')

or when creating the figure

  fig = figure(1, facecolor='red')

JDH

------------------------------------------------------------------------------
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to