views:

802

answers:

2
+4  A: 
David Cournapeau
+3  A: 

David Cournapeau provided a link to this example:

legend_demo3.py

The important part of the code is setting up the legend:

ax2.legend(loc="center left", bbox_to_anchor=[0.5, 0.5],
           ncol=2, shadow=True, title="Legend")

Set ncol=2 in your case and it should work great.

James Thompson