Re: [Matplotlib-users] legend markerscale does not work

2010-04-05 Thread Jae-Joon Lee
On Sun, Apr 4, 2010 at 2:56 AM, Levi Kilcher wrote: > And what the heck are the line objects in the legend?  Are there > separate marker objects that I am missing? > Yes. l = legend() l.get_lines()[0]._legmarker.set_ms(5) The line objects in the legend handles have a _legmarker attribute which

[Matplotlib-users] legend markerscale does not work

2010-04-03 Thread Levi Kilcher
Can anyone else confirm this bug? It was giving me fits for a while. I can't control the size of markers in my plots. Here is an old post describing exactly my problem: http://sourceforge.net/mailarchive/message.php?msg_id=972d0a0e0809232229ue9aa42eg5d791a08692f7e7b%40mail.gmail.com I am running

Re: [Matplotlib-users] legend - markerscale does not work

2008-09-23 Thread Friedrich Hagedorn
On Wed, Sep 24, 2008 at 02:29:28PM +0900, Yong-Duk Jin wrote: >Dear matplotlib users. > >I'm using matplotlib 0.98.3 from the packman repository on opensuse 11.0. >I tried to adjust the 'markerscale option to enlarge a marker size in a >legend. >However, it simply did not work

[Matplotlib-users] legend - markerscale does not work

2008-09-23 Thread Yong-Duk Jin
Dear matplotlib users. I'm using matplotlib 0.98.3 from the packman repository on opensuse 11.0. I tried to adjust the 'markerscale option to enlarge a marker size in a legend. However, it simply did not work even in a simple code like following. from pylab import * x = [1,2,3]; y = [1,2,3] plot(