[Matplotlib-users] figlegend: doesn't display markers

2009-03-07 Thread Erik Granstedt
Hello, I found an issue in working with subplots and using figlegend: it doesn't display markers. This code illustrates the problem: x=r_[0.:11.:1.] y=x**1.5 figure() subplot(211) line=plot(x,y,'sb-.') figlegend( (line,),('y',),'right' ) Supplying the numpoints keyword to figlegend doesn't

[Matplotlib-users] figlegend: ensure it fits in the figure

2009-03-07 Thread Erik Granstedt
Hello, I am generating a figure with 4 subplots, then using the figlegend command to generate a legend on the right side of the four plots. This is part of a script designed to handle varrying numbers of lines to be plotted, so sometimes the legend has many entries and sometimes it has a few. Is