Re: [Matplotlib-users] legend breaks clf()

2007-06-07 Thread Jouni K . Seppänen
Norbert Nemec [EMAIL PROTECTED] writes: Thanks for the hint. I just fixed the problem in SVN. I thought I had fixed this in March... see http://thread.gmane.org/gmane.comp.python.matplotlib.devel/2574 But that was the get_handles() in legend.py, while this one is in axes.py. Probably the code

[Matplotlib-users] change in color handling (or bug in 0.90.1) ?

2007-06-07 Thread Mark Bakker
Hello - This used to work: fill( [0,1,1], [0,0,1], '#66') But it doesn't work anymore under 0.90.1. I thought it still worked under 0.90.0 Anybody see the same problem? Plot seems to have the same problem: plot([1,2,3],'#af') Error message for the plot statement: Traceback (most

Re: [Matplotlib-users] legend breaks clf()

2007-06-07 Thread Norbert Nemec
Just checked in an even cleaner solution: in _auto_legend_data, the internal routine get_handles() was overly complex: first, it would merge lines, patches and linecollections into one list, only to then handle each kind separately. I simplified the code to avoid that issue, so get_handle only

Re: [Matplotlib-users] ANN: matplotlib-0.90.1

2007-06-07 Thread Werner F. Bruhin
Hi Andrew, Werner F. Bruhin wrote: Hi Andrew, Andrew Straw wrote: Dear Werner, This seems to be an unintended side-effect of reorganizing the mpl data file location that I did prior to this release. (I.e. it's not your code that broke, I think it's mpl.) Unfortunately, since I

Re: [Matplotlib-users] displaying only one colorbar... [fixed]

2007-06-07 Thread fred
Eric Firing a écrit : You may need to post a small code example so we can see what you are doing; but an interactive example using ipython -pylab may give you enough information to answer your question: Hi , Not really ;-), but no problem. I got a fix. The trick is to pass axes colorbar as

[Matplotlib-users] Colorbar frame

2007-06-07 Thread Matthew Czesarski
Hi Matplotlib users. I've been fiddling with colorbars a bit today and having a bit of difficulty with the borders. Take, for example, subplots_adjust.py: it makes nice colorbar up the side of the image. But there is a black border, plus numbers, around the colorbar. Is there an easy way of

Re: [Matplotlib-users] ANN: matplotlib-0.90.1

2007-06-07 Thread Andrew Straw
Werner F. Bruhin wrote: Hi Andrew, Werner F. Bruhin wrote: Hi Andrew, Andrew Straw wrote: Dear Werner, This seems to be an unintended side-effect of reorganizing the mpl data file location that I did prior to this release. (I.e. it's not your code that broke, I think

[Matplotlib-users] record array and date support

2007-06-07 Thread John Hunter
I just added support for native plotting of python date and datetime objects (you still can, but don't have to use plot_date with date2num conversions). We will continue to do conversion to floats under the hood, but the conversion can be handled automagically. I also added support for loading

[Matplotlib-users] Encoding?

2007-06-07 Thread Marek Wojciechowski
Hi. How can I get polish letters in, for example, plot title? Now I have empty squares instead... Thanks in advance for any help. -- Marek Wojciechowski - This SF.net email is sponsored by DB2 Express Download DB2 Express

Re: [Matplotlib-users] Encoding?

2007-06-07 Thread Andrew Straw
Marek, See the unicode_demo.py and the tex_unicode_demo.py in the examples directory. Marek Wojciechowski wrote: Hi. How can I get polish letters in, for example, plot title? Now I have empty squares instead... Thanks in advance for any help.

Re: [Matplotlib-users] change in color handling (or bug in 0.90.1) ?

2007-06-07 Thread Eric Firing
Mark Bakker wrote: Hello - This used to work: fill( [0,1,1], [0,0,1], '#66') But it doesn't work anymore under 0.90.1. I thought it still worked under 0.90.0 I don't think this behavior is documented, and a very quick look at recent changes to axes.py did not reveal a corresponding