Re: [Matplotlib-users] Changing sensitivity of mouse hover readings

2009-05-13 Thread Gökhan SEVER
Nop John, I was just wondering whether my assignment syntactically correct in Python or a missing feature in matplotlib. Gökhan On Wed, May 13, 2009 at 2:23 PM, John Hunter wrote: > On Wed, May 13, 2009 at 2:15 PM, Gökhan SEVER > wrote: > > Hmm, Thank you for the guidance John :) > > > > def

Re: [Matplotlib-users] Changing sensitivity of mouse hover readings

2009-05-13 Thread John Hunter
On Wed, May 13, 2009 at 2:15 PM, Gökhan SEVER wrote: > Hmm, Thank you for the guidance John :) > > def myformat(x): > return '%1.2f'%x > > axes().fmt_xdata = myformat works like you said. > > How can I join x and y in one function? The following line gives me a syntax > error. > > def myform

Re: [Matplotlib-users] Changing sensitivity of mouse hover readings

2009-05-13 Thread Gökhan SEVER
Hmm, Thank you for the guidance John :) def myformat(x): return '%1.2f'%x axes().fmt_xdata = myformat works like you said. How can I join x and y in one function? The following line gives me a syntax error. def myformat(x, y): return '%1.2f'%x, '%1.2f'%y axes().(fmt_xdata, fmt_ydat

Re: [Matplotlib-users] Changing sensitivity of mouse hover readings

2009-05-13 Thread John Hunter
On Wed, May 13, 2009 at 1:39 PM, Gökhan SEVER wrote: > Hello, > > Is there a way to change the resolution of x and y readings (while hovering > the mouse inside the canvas area) from the status bar of a plot window? > > Currently x show 2 or 3 digits after 0, while y only increments at 0.1 or 1 >