Re: [Matplotlib-users] Removing the white border around graph

2009-03-31 Thread John Hunter
On Tue, Mar 31, 2009 at 3:40 AM, Matthias Michler wrote: >> Hmm...i am also curious if it is possible to display the tick markers >> inside the graph. There is an rc parameter (see http://matplotlib.sourceforge.net/users/customizing.html) controlling this xtick.direction : in # dir

Re: [Matplotlib-users] Removing the white border around graph

2009-03-31 Thread Matthias Michler
Hello , i'm not sure if your problem was resolved in the mean time. If this is not the case the following may help: plt.axes(axisbg=white, frameon = True) -> plt.axes([0,0,1,1], axisbg=white, frameon = True) where the first list descibes [left, bottom, width, height] in normalized (0, 1) coord

[Matplotlib-users] Removing the white border around graph

2009-03-23 Thread Lion Krischer
Hi, I have a newbie question regarding matplotlib. I want to plot a graph without the white border around it. I googled a lot but didn't find anything useful. The following code produces a graph without any ticks and it also makes the white border around the graph transparent. ## impo