Re: [Matplotlib-users] mathtext and py2exe

2009-04-30 Thread sordnay
Thanks for the quick answer, I cant check now, it's also the reason why i didn't post the exact error code, but the program is supposed to use only Tahoma ttf font which I included on the data files. Michael Droettboom-3 wrote: > > It sounds like it is not finding the appropriate fonts. Have

[Matplotlib-users] mathtext and py2exe

2009-04-30 Thread sordnay
hello, I have written a program which uses matplotlib to plot some figures, it uses mathtext to add some special chars (basically just the square on acceleration units), and the program works just fine, but using py2exe to build a windows executable, it fails somewhere drawing that square symbol.

Re: [Matplotlib-users] How to insert a new button?

2008-11-06 Thread sordnay
Thanks for your answer Gregor, I'm using TkAgg backend, I hope is also that simple there! Gregor Thalhammer-2 wrote: > > This depends on the backend/GUI toolkit you use. If you use wx, a simple > approach might be the following: > > -- > from pylab import * > import wx > > d

[Matplotlib-users] How to insert a new button?

2008-11-05 Thread sordnay
Hi I would like to insert a new button on the standard figure toolbar, is there an easy way? maybe someone can post an example? Thanks -- View this message in context: http://www.nabble.com/How-to-insert-a-new-button--tp20348834p20348834.html Sent from the matplotlib - users mailing list archiv

Re: [Matplotlib-users] gcf() problem

2008-07-01 Thread sordnay
I've submited the bug, I also tried to think about a solution, but this is not trivial at all for me hehe, I'm still learning how to use this wonderful piece of software (thank you all who did developed it btw) I think figure should simply call _pylab_helpers.Gcf.set_active(figManager) whenev

[Matplotlib-users] gcf() problem

2008-06-29 Thread sordnay
Hi all, I have a little problem, I've been unable to solve, maybe someone can help me out. I have several figures opened, but when I use gcf() I get handle of the last opened figure instead of the active one... i.e. when intercepting a button_press_event, gcf().number returns the number of the l

Re: [Matplotlib-users] color xy plot

2008-06-27 Thread sordnay
John Hunter-4 wrote: > > On Fri, Jun 20, 2008 at 6:14 PM, sordnay <[EMAIL PROTECTED]> wrote: >> >> Hi all, >> I'm trying to plot in 2D, 3 variables from time series, instead of volume >> I >> want color for the third variable. >> I have p

[Matplotlib-users] color xy plot

2008-06-21 Thread sordnay
Hi all, I'm trying to plot in 2D, 3 variables from time series, instead of volume I want color for the third variable. I have partial success with a scatter plot, but I'm unable to manage the colorbar so it represents z values, I needed to sort the variables and it's getting a bit ugly, so I thoug