[Matplotlib-users] rec2gtk

2009-10-22 Thread Andre Smit
Is is possible to xalign rec2gtk columns? I see the following line in the rec2gtk source: -> renderer.set_property('xalign', formatter.xalign) but can't figure out how to pass this info to the func. thx Andre -- Come b

Re: [Matplotlib-users] fill_between, legends, and "label" parameter

2009-10-22 Thread Mike Anderson
> If you want to have a legend for PolyCollection, you may use a proxy > artist. > > http://matplotlib.sourceforge.net/users/legend_guide.html#using-proxy-artist > Thanks for the link! Although, it seems that legend does not support PolyCollection at all: "Remember that some pyplot comman

Re: [Matplotlib-users] Setting Figure = Figure possible?

2009-10-22 Thread Jae-Joon Lee
I guess you need to update the canvas itself, but there could be more things to do. My recommendation is not to switch figure, but to switch axes (or just contours). You may create several axes in a same figure and make them invisible (or temporarily remove them from the figure) except the one you

Re: [Matplotlib-users] fill_between, legends, and "label" parameter

2009-10-22 Thread Jae-Joon Lee
> Why is that? "fill" creates Patches (http://matplotlib.sourceforge.net/api/artist_api.html?highlight=patch#matplotlib.patches.Patch) but fill_between creates PolyCollection (http://matplotlib.sourceforge.net/api/collections_api.html?highlight=polycollection#matplotlib.collections.PolyCollection)

Re: [Matplotlib-users] error bar line width in bar function, cap width in errorbar function

2009-10-22 Thread Jae-Joon Lee
On Thu, Oct 22, 2009 at 8:59 AM, Johan Carlin wrote: > 1. Is there a way to change error bar line width directly with the bar > function? Maybe not. It seems that the "bar" function currently does not return errorbar-related artists. You can find them by looking through axes.lines and axes.colle

Re: [Matplotlib-users] What about providing a chm version of the API

2009-10-22 Thread Jae-Joon Lee
I recommend you to open a feature request ticket on the sourceforge site. http://sourceforge.net/tracker/?atid=560723&group_id=80706&func=browse This is more like an sphinx issue than matplotlib one, and it seems that sphinx have some support for chm format. So I guess this could be done quite ea

Re: [Matplotlib-users] What about providing a chm version of the API

2009-10-22 Thread Gökhan Sever
On Thu, Oct 22, 2009 at 8:55 AM, clarknie wrote: > I mean, it's quite time-consuming to find the function I want on the net > > and the pdf version is not so convenient as the chm version. Anybody any > idea? > > > Alternatively, you can check-out the source copy and build your own documentation

[Matplotlib-users] Setting Figure = Figure possible?

2009-10-22 Thread Jason Kenney
I'm new to matplotlib and python GUIs in general, so I apologize if I'm missing something fundamental in my understanding of the matplotlib canvas - figure - etc model. That said... I'm working on a small matplotlib app using PyQT4. It involves selecting an arbitrary number of data files and br

[Matplotlib-users] What about providing a chm version of the API

2009-10-22 Thread NIE Cheng
I mean, it's quite time-consuming to find the function I want on the net and the pdf version is not so convenient as the chm version. Anybody any idea? -- Come build with us! The BlackBerry(R) Developer Conference in SF, C

[Matplotlib-users] What about providing a chm version of the API

2009-10-22 Thread clarknie
I mean, it's quite time-consuming to find the function I want on the net and the pdf version is not so convenient as the chm version. Anybody any idea? -- Come build with us! The BlackBerry(R) Developer Conference in SF

[Matplotlib-users] error bar line width in bar function, cap width in errorbar function

2009-10-22 Thread Johan Carlin
Hi all, Changing the linewidth parameter in the bar chart function doesn't seem to change the error bar width. E.g. V = (.5,1.) e = (.2,.3) bar((0,1), V, yerr=e, linewidth=3,ecolor='k',edgecolor='k') Produces thick lines around the bars, but thin error bars. It's possible to get around this by