[Matplotlib-users] Remove Patch Rectangle Around Plot

2009-07-01 Thread Mark Larsen
Hopefully a really simple question. How do I remove the box (the black rectangle) around the plot. I tried ax = fig.add_subplot(111) ax.patch.set_visible(False) but this makes the entire patch invisible. Thanks, Mark

Re: [Matplotlib-users] Remove Patch Rectangle Around Plot

2009-07-01 Thread João Luís Silva
Mark Larsen wrote: Hopefully a really simple question. How do I remove the box (the black rectangle) around the plot. I tried ax = fig.add_subplot(111) ax.patch.set_visible(False) but this makes the entire patch invisible. Thanks, Mark

Re: [Matplotlib-users] Remove Patch Rectangle Around Plot

2009-07-01 Thread Mark Larsen
I think what you want is ax = fig.add_subplot(111,frameon=False) JLS D'oh, I knew it had to be easy. Thanks JLS. -- ___ Matplotlib-users mailing list