Background color of the entire image..

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?

Thank you for you help,
Ales

···


View this message in context: http://www.nabble.com/Background-color-of-the-entire-image…-tp21660059p21660059.html
Sent from the matplotlib - users mailing list archive at Nabble.com.

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

···

On Sun, Jan 25, 2009 at 9:26 PM, AlsCdz <cadez_ales@...2418...> 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?