Re: [Matplotlib-users] erasing the figure border

2007-08-20 Thread Johann Cohen-Tanugi
That did it. thanks! Eric Firing wrote: > Johann Cohen-Tanugi wrote: >> hello, >> I am using matplotlib to make a drawing, so though I am using >> distances on the pad I do not need to display the axes and would >> rather have no frame and no tick. >> To achieve this, I tried using : >> rc('axes

Re: [Matplotlib-users] erasing the figure border

2007-08-20 Thread Eric Firing
Johann Cohen-Tanugi wrote: > hello, > I am using matplotlib to make a drawing, so though I am using distances > on the pad I do not need to display the axes and would rather have no > frame and no tick. > To achieve this, I tried using : > rc('axes', edgecolor='white') If your axes instance is "

Re: [Matplotlib-users] erasing the figure border

2007-08-20 Thread Alan G Isaac
On Mon, 20 Aug 2007, Johann Cohen-Tanugi apparently wrote: > I am sure there is a > better way to do that Set the ticks to an empty tuple. hth, Alan Isaac - This SF.net email is sponsored by: Splunk Inc. Still grepping

[Matplotlib-users] erasing the figure border

2007-08-20 Thread Johann Cohen-Tanugi
hello, I am using matplotlib to make a drawing, so though I am using distances on the pad I do not need to display the axes and would rather have no frame and no tick. To achieve this, I tried using : rc('axes', edgecolor='white') rc('xtick', color='white') rc('ytick', color='white') The first c