Re: [matplotlib-devel] svn zoom

2006-08-11 Thread Darren Dale
On Thursday 10 August 2006 11:17, John Hunter wrote: > I'm a little confused here because the default should be to use the > axis major formatter (eg in the Axes.format_xdata function). Why > would the default formatter return such a long string? > > I don't know what the right answer is: using th

Re: [matplotlib-devel] svn zoom

2006-08-11 Thread John Hunter
> "Darren" == Darren Dale <[EMAIL PROTECTED]> writes: Darren> return self.format_data(value) Darren> I'm not sure what you had in mind. Oops: def format_data_short(self,value): 'return a short string version' return self.format_data(value) Fixed in svn JDH --

[matplotlib-devel] widget locking

2006-08-11 Thread Darren Dale
When I run the following: figure(); plot([1,2]) figure(); plot([1,2]) and then I use the zoom widget in one figure, and then try to use the zoom widget in the other figure without turning off the first zoom widget, I get an error. Is this desirable?

Re: [matplotlib-devel] widget locking

2006-08-11 Thread John Hunter
> "Darren" == Darren Dale <[EMAIL PROTECTED]> writes: Darren> When I run the following: figure(); plot([1,2]) figure(); Darren> plot([1,2]) Darren> and then I use the zoom widget in one figure, and then try Darren> to use the zoom widget in the other figure without turning