[Matplotlib-users] Remove box around legend?

2009-07-09 Thread Joseph Smidt
I see lots of examples on how to play around with the legend, adding columns, shadow, etc...Is there a way to remove the box so that all you see are the items of things being plotted with no box around them? Also, keeping the box but removing the black outline around the box is good enough

Re: [Matplotlib-users] Remove box around legend?

2009-07-09 Thread Chaitanya Krishna
Hi, legend.draw_frame(False) should do the trick. Check out http://matplotlib.sourceforge.net/api/artist_api.html?highlight=draw_frame#matplotlib.legend.Legend.draw_frame Cheers, Chaitanya On Thu, Jul 9, 2009 at 11:18 PM, Joseph Smidtjosephsm...@gmail.com wrote: I see lots of examples on how

Re: [Matplotlib-users] Remove box around legend?

2009-07-09 Thread Joseph Smidt
Thank you! That did it. I thought I read the webpage you sent 10 times, but didn't even notice. Thanks. On Thu, Jul 9, 2009 at 3:38 PM, Chaitanya Krishnaicym...@gmail.com wrote: Hi, legend.draw_frame(False) should do the trick. Check out