I'm not understanding facecolor and edgecolor.
In the code below (on Windows, with TkAgg)
I get the facecolor displayed but not the
edgecolor, and the saved figure shows *neither*.
Why?  (version is 0.98.1)

Thanks,
Alan Isaac

import matplotlib.pyplot as plt
import numpy as np

fig1 = plt.figure(1)
fig1.set_frameon(True)
fig1.set_facecolor('r')
fig1.set_edgecolor('b')

ax1 = fig1.gca()
ax1.plot([1,2,3])

fig1.savefig('c:/temp/temp.eps')

plt.show()


------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image 
processing features enabled. http://p.sf.net/sfu/kodak-com
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to