legend - markerscale does not work

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(x,y,ls=’’,marker=‘o’,ms=1,label=‘test’)
legend(markerscale=5)
show()

I could only get a legend marker in a same size with the plot marker.

I tried to reinstall all the packages related with python, including matplotlib,
the legend marker size, however, does not change.

Please help me here to change the legend marker size.

Thanks.

···


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(x,y,ls='',marker='o',ms=1,label='test')
   legend(markerscale=5)
   show()

   I could only get a legend marker in a same size with the plot marker.

   I tried to reinstall all the packages related with python, including
   matplotlib,
   the legend marker size, however, does not change.

   Please help me here to change the legend marker size.

   Thanks.

   --
   Yong-Duk Jin

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
matplotlib-users List Signup and Options

···

On Wed, Sep 24, 2008 at 02:29:28PM +0900, Yong-Duk Jin wrote: