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 seem to have
any effect, ie. I get the same results with:
figlegend( (line,),('y',),'right',numpoints=10 )
Is this the intended behavior? Is there a good way to display the markers?
I did find a workaround, but I don't think this is the ideal method:
x=r_[0.:11.:1.]
y=x**1.5
figure()
subplot(111)
line=plot(x,y,'sb-.')
figlegend( (line,),('y',),'right' )
subplot(211)
line=plot(x,y,'sb-.')
Thanks,
-Erik