legend without border?

Hi, Is there a way to get a legend without a border?

    > (Using pylab.legend().) (Sorry if this is all too
    > easy, but I couldn't find this anywhere.)

Then it must not be *too* easy to find :slight_smile:

The legend command returns a legend instance

  leg = ax.legend(something...)

and you can find the legend methods at

  http://matplotlib.sourceforge.net/matplotlib.legend.html

Specifically the "draw_frame" method

  leg.draw_frame(False)

Should help,
JDH