Re: [matplotlib-devel] Fwd: rgrids and thetagrids raise AttributeError and TypeError

2008-06-19 Thread Michael Droettboom
That's a bug created by not updating thetagrids and rgrids after the recent transformation refactoring. I believe it is not fixed in r5594. Can you update and let me know if you're still having trouble? Thanks, Mike Tony Yu wrote: > I was playing around with polar plots and trying to alter th

Re: [matplotlib-devel] Fwd: rgrids and thetagrids raise AttributeError and TypeError

2008-06-19 Thread Tony Yu
Hi Mike, I just updated to r5595 and both rgrids and thetagrids work perfectly. Thanks for your help. -Tony On Jun 19, 2008, at 9:24 AM, Michael Droettboom wrote: > That's a bug created by not updating thetagrids and rgrids after the > recent transformation refactoring. > > I believe it is n

[matplotlib-devel] hist() sort of broken in trunk

2008-06-19 Thread Olle EngdegÄrd
hist(histtype="step") worked fine in rev5412, but in the latest I get >>> hist(randn(1000), histtype="step") Traceback (most recent call last): /.../ raise TypeError, 'There is no patch property "%s"'%key TypeError: There is no patch property "closed" Changing closed = kwargs.get('closed',

[matplotlib-devel] linestyle in patches

2008-06-19 Thread Olle EngdegÄrd
Here is a patch to add linestyles to patches.py. I have tried it with unfilled step histograms (important for b/w print and colour blind people). What do you think? Cheers, OlleIndex: patches.py === --- patches.py (revision 5595

[matplotlib-devel] clipped line

2008-06-19 Thread John Hunter
On the 0.91 branch, there was an example called clippedline.py that did a searchsorted on the xdata based on the xlim to cull out points far outside the view limits. This is useful if you have a really long time series and want to navigate through it. This is broken on the trunk, but before I div

Re: [matplotlib-devel] clipped line

2008-06-19 Thread Michael Droettboom
John Hunter wrote: > On the 0.91 branch, there was an example called clippedline.py that > did a searchsorted on the xdata based on the xlim to cull out points > far outside the view limits. This is useful if you have a really long > time series and want to navigate through it. > > This is broken

Re: [matplotlib-devel] Inheritance graphs

2008-06-19 Thread Fernando Perez
On Thu, Jun 19, 2008 at 1:05 PM, Michael Droettboom <[EMAIL PROTECTED]> wrote: > This directive suffers from the same shortcoming as mathpng.py -- the images > are written to _static which probably isn't a good place for generated > files. Once we have a solution to this, I'll fix it. It may be

Re: [matplotlib-devel] Inheritance graphs

2008-06-19 Thread Darren Dale
On Thursday 19 June 2008 04:05:26 pm Michael Droettboom wrote: > I just committed support for inheritance graphs in the docs like the one > attached. In the docs themselves, an image map is included so clicking > on a node hyperlinks to the class docs. Really cool, Mike. > It uses "dot" to rende

Re: [matplotlib-devel] Inheritance graphs

2008-06-19 Thread John Hunter
On Thu, Jun 19, 2008 at 3:05 PM, Michael Droettboom <[EMAIL PROTECTED]> wrote: > I just committed support for inheritance graphs in the docs like the one > attached. In the docs themselves, an image map is included so clicking on a > node hyperlinks to the class docs. > > It uses "dot" to render t

[matplotlib-devel] figimages

2008-06-19 Thread John Hunter
I believe there is a bug in the figimage handling when multiple images are present. It looks like there is a negative sign in the transformation that shouldn't be there. It is common to get upside down in mpl, since bottom is 0 for us and usually bottom is top Uncomment out the second figimage c

[matplotlib-devel] sphinx error

2008-06-19 Thread Charles Moad
Just jumped into the new docs to take a look and immediately having problems building. I am hoping someone can make a quick fix so I don't have to debug. quaternion:doc cmoad$ ./make.py html Sphinx v0.3, building html trying to load pickled env... not found building [html]: targets for 45 sou

Re: [matplotlib-devel] sphinx error

2008-06-19 Thread Michael Droettboom
What version of Python are you running? All I can think from looking at the code is that something in the regex is behaving differently for you than me (on Python 2.5). If you just want the docs to build (minus the inheritance diagrams), you can put a "return []" at the top of "inheritance_dia

Re: [matplotlib-devel] Inheritance graphs

2008-06-19 Thread Michael Droettboom
John Hunter wrote: > On Thu, Jun 19, 2008 at 3:05 PM, Michael Droettboom <[EMAIL PROTECTED]> wrote: > >> I just committed support for inheritance graphs in the docs like the one >> attached. In the docs themselves, an image map is included so clicking on a >> node hyperlinks to the class docs.