Re: [Matplotlib-users] Removing the black border around a plot?

2007-04-03 Thread Ken McIvor
On Apr 1, 2007, at 11:27 PM, Chelonian wrote: I'm new to matplotlib, and I can't even get this to work (let alone the other fix of changing the colors). Could you elaborate about how to implement this? I've tried putting these lines in the __init__ of the PlotPanel() class, but I can't

Re: [Matplotlib-users] Removing the black border around a plot?

2007-04-01 Thread Chelonian
Peter L. Buschman wrote: Okay, removing the frame turns out to work like this. ax=gca() setp(ax, frame_on=False) I'm new to matplotlib, and I can't even get this to work (let alone the other fix of changing the colors). Could you elaborate about how to implement this?

Re: [Matplotlib-users] Removing the black border around a plot?

2007-03-17 Thread Peter Buschman
For those who are interested in the solution, here it is... ;-) It turns out that the axes object has an attribute, axesFrame (a 2D line in the shape of a rectangle), in addition to frame (a Rectangle). At the default linewidth of 1, these two are nested and appear to be a single object.