Re: [Matplotlib-users] Lines and columns in legends

2009-04-12 Thread Jae-Joon Lee
The recent version of the mpl now supports multi-column legend. http://matplotlib.sourceforge.net/examples/pylab_examples/legend_demo3.html Thus, it would be great if you to try the new version, and if your problem is still not solved, please report it again. Regards, -JJ On Sun, Apr 12, 2009

Re: [Matplotlib-users] Lines and columns in legends

2008-10-09 Thread Jae-Joon Lee
Although I think it is possible to calculate the bounding box of the all legends automatically, Here is a manual way. from matplotlib.patches import Rectangle l1.get_frame().set_visible(False) # make background frame of legends invisible l2.get_frame().set_visible(False) # make a large backgrou

Re: [Matplotlib-users] Lines and columns in legends

2008-10-09 Thread José Alexandre Nalon
Hello, Em Thursday 09 October 2008 13:46:52 Jae-Joon Lee escreveu: > Meanwhile, you may try to make multiple legends as a posible workarounds. Thanks for your answer. That did the trick, and the figure looks more or less as I wanted. It would look exactly as I wanted if I could remove the border

Re: [Matplotlib-users] Lines and columns in legends

2008-10-09 Thread Jae-Joon Lee
The current legend class does not support multiple columns. Eric Wertman once mentioned in this list that he would work on this feature, but I don't know the current status. A (partial) rewrite of the legend class which I plan to support multicolumns is in my TODO list but I haven't started it yet.