On Mon, Apr 26, 2010 at 12:01 PM, Jae-Joon Lee <[email protected]> wrote: > Looking at the code, the "transparent" option set alphas of paches to > 0, which I think is simply ignored in ps backend (which does not > support alpha). I think it is better if the visibility of patches is > set to False when the "transparent" option is set. >
Or both. > Setting patch's (face) color to "none" work for me. If it does not > work, please post a complete script. > Attached. But I'm not doing anything fancy. I've also attached the EPS along with a TEX document.
import matplotlib
import matplotlib.pyplot as plt
ax = plt.gca()
f = ax.figure
ax.plot(range(10))
ax.set_axis_bgcolor('none')
f.set_facecolor('none')
f.savefig('transeps.eps')
transeps.eps
Description: PostScript document
transeps.tex
Description: TeX document
------------------------------------------------------------------------------
_______________________________________________ Matplotlib-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/matplotlib-users
