Re: [Matplotlib-users] svg format graph: lines out of box

2015-03-13 Thread liu lily
OK, it seems that this is due to my picture browser application. I take a snapshot, as in the attachment. On Fri, Mar 13, 2015 at 11:51 AM, liu lily wrote: > strange, it seems the pic above is normal? so I send it again > > On Fri, Mar 13, 2015 at 11:43 AM, liu lily wrote: >

Re: [Matplotlib-users] Draggable is not working on multiple legends of plots which are generated with twinx()

2015-03-11 Thread liu lily
ew axes is added on top of the original axes. > > I hope that clears it up. > > Ben Root > > On Wed, Mar 11, 2015 at 10:05 AM, liu lily wrote: > >> I dont understand >> you say it is the first axe >> but why in my case, only the second legend is draggable? it

Re: [Matplotlib-users] Draggable is not working on multiple legends of plots which are generated with twinx()

2015-03-11 Thread liu lily
PM, Thomas Caswell wrote: > The mouse events only propagate to the top axes. You will have to add > both legends to the same (top) axes. > > See http://matplotlib.org/users/legend_guide.html#multiple-legend > > > Tom > On Wed, Mar 11, 2015, 08:57 liu lily wrote: > &

[Matplotlib-users] Draggable is not working on multiple legends of plots which are generated with twinx()

2015-03-11 Thread liu lily
Hi, all: I have two legends, as below, I find that I can't drag the first legend, what is the problem? how to deal with it? thanks! import matplotlib.pyplot as plt fig1, ax1 = plt.subplots() ax2 = ax1.twinx() ax1.plot([1,2,3],[0.1,0.82,0.3],'y*', label="one")