Re: [matplotlib-devel] clip_on & clip_box in plot()

2008-08-28 Thread Jae-Joon Lee
Thanks! It works as I expected. -JJ On Thu, Aug 28, 2008 at 8:43 AM, Michael Droettboom <[EMAIL PROTECTED]> wrote: > This should now be fixed in SVN r6052. > > Cheers, > Mike > > Jae-Joon Lee wrote: >> >> Hi, >> >> The clip_on and clip_box arguments (and maybe clip_path also) in >> plot() comman

Re: [matplotlib-devel] clip_on & clip_box in plot()

2008-08-28 Thread Michael Droettboom
This should now be fixed in SVN r6052. Cheers, Mike Jae-Joon Lee wrote: > Hi, > > The clip_on and clip_box arguments (and maybe clip_path also) in > plot() command seem to have no effect. For example, > > In [29]: p, =plot([1,2,3], clip_on=False) > > In [30]: p.get_clip_on() > Out[30]: True >

Re: [matplotlib-devel] clip_on & clip_box in plot()

2008-08-28 Thread Michael Droettboom
I think this is a bug created by the conversion from 0.91 to 0.98. I'll look into this and let you know when it has been resolved. Mike Jae-Joon Lee wrote: > Hi, > > The clip_on and clip_box arguments (and maybe clip_path also) in > plot() command seem to have no effect. For example, > > In [2

[matplotlib-devel] clip_on & clip_box in plot()

2008-08-27 Thread Jae-Joon Lee
Hi, The clip_on and clip_box arguments (and maybe clip_path also) in plot() command seem to have no effect. For example, In [29]: p, =plot([1,2,3], clip_on=False) In [30]: p.get_clip_on() Out[30]: True It seems that the line object is created with the given arguments but gets overwritten la