Re: [matplotlib-devel] auto-rotating text and plotyy

2008-07-29 Thread David Kaplan
Hi, Sorry I didn't respond to this immediately - I have had my mind on other things. plotyy is basically a wrapper around twinx that provides a bit of extra/built-in functionality. The idea is that you have two curves with similar x values, but different y that you want to plot together. It plot

[matplotlib-devel] Bug2008303

2008-07-29 Thread Manuel Metz
[ 2008303 ] AttributeError: Unknown property histtype I think this bug can be closed. - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK

Re: [matplotlib-devel] AttributeError: 'module' object has no attribute 'CallLater'

2008-07-29 Thread Nils Wagner
On Tue, 29 Jul 2008 12:10:09 -0400 Paul Kienzle <[EMAIL PROTECTED]> wrote: > On Tue, Jul 29, 2008 at 05:46:59PM +0200, Nils Wagner >wrote: >> On Mon, 28 Jul 2008 15:32:38 -0400 >> >> WxPython experts: what version do we require? If it >>is >> >>earlier than >> >> 2.8, then it appears we badl

Re: [matplotlib-devel] AttributeError: 'module' object has no attribute 'CallLater'

2008-07-29 Thread John Hunter
On Mon, Jul 28, 2008 at 2:32 PM, Paul Kienzle <[EMAIL PROTECTED]> wrote: > Clearly I'm developing on 2.8, otherwise I wouldn't be introducing > so many issues for older versions. What version do people want > supported? For wxagg, we would like to support 2.6.3.2.2 and later (if it is not too mu

Re: [matplotlib-devel] Bug2008303

2008-07-29 Thread John Hunter
On Tue, Jul 29, 2008 at 10:20 AM, Manuel Metz <[EMAIL PROTECTED]> wrote: > [ 2008303 ] AttributeError: Unknown property histtype > > I think this bug can be closed. OK, do you want to take care of it? - This SF.Net email is s

Re: [matplotlib-devel] AttributeError: 'module' object has no attribute 'CallLater'

2008-07-29 Thread John Hunter
On Tue, Jul 29, 2008 at 11:19 AM, Nils Wagner <[EMAIL PROTECTED]> wrote: > Is that correct ? > > I will try it asap. > > Thanks in advance OK, I just added a compatibility method for isShownOnScreen. Can you give svn another test drive with your wx version, Nils? Thanks, JDH --

Re: [matplotlib-devel] AttributeError: 'module' object has no attribute 'CallLater'

2008-07-29 Thread Nils Wagner
On Tue, 29 Jul 2008 13:01:04 -0500 "John Hunter" <[EMAIL PROTECTED]> wrote: > On Tue, Jul 29, 2008 at 11:19 AM, Nils Wagner > <[EMAIL PROTECTED]> wrote: > >> Is that correct ? >> >> I will try it asap. >> >> Thanks in advance > > OK, I just added a compatibility method for >isShownOnScreen. C

Re: [matplotlib-devel] AttributeError: 'module' object has no attribute 'CallLater'

2008-07-29 Thread Paul Kienzle
On Tue, Jul 29, 2008 at 08:39:10PM +0200, Nils Wagner wrote: > On Tue, 29 Jul 2008 13:01:04 -0500 > "John Hunter" <[EMAIL PROTECTED]> wrote: > > On Tue, Jul 29, 2008 at 11:19 AM, Nils Wagner > > <[EMAIL PROTECTED]> wrote: > > > >> Is that correct ? > >> > >> I will try it asap. > >> > >> Thanks

Re: [matplotlib-devel] AttributeError: 'module' object has no attribute 'CallLater'

2008-07-29 Thread John Hunter
On Tue, Jul 29, 2008 at 4:38 PM, Paul Kienzle <[EMAIL PROTECTED]> wrote: > Okay, how about >if not hasattr(self,'IsVisible'): >self.IsVisible = lambda self: True > in __init__ > > That way it will always think it is visible. OK, Nils, I committed a minor variant of that in r5926. Tes

[matplotlib-devel] Alternate lasso: click to form polygon

2008-07-29 Thread Eric Bruning
I wanted something more precise (and easier on the carpal tunnel) than the included Lasso widget. Inspired by the existing Lasso, I forked out an alternate approach that creates a polygon with mouse clicks and returns a list of vertices to a callback function. See the attached for a demo. It's bee

Re: [matplotlib-devel] Alternate lasso: click to form polygon

2008-07-29 Thread Eric Firing
Eric Bruning wrote: > I wanted something more precise (and easier on the carpal tunnel) than > the included Lasso widget. Inspired by the existing Lasso, I forked > out an alternate approach that creates a polygon with mouse clicks and > returns a list of vertices to a callback function. > > See t