Re: [Matplotlib-users] How to turn off all clipping?

2009-03-19 Thread John Hunter
On Thu, Mar 19, 2009 at 2:33 PM, Eric Firing wrote: > > > def noclip(ax): > "Turn off all clipping in axes ax; call immediately before drawing" > ax.set_clip_on(False) > artists = [] Or even better:: for o in fig.findobj(): o.set_clip_on(False) findobj is an artist method that

Re: [Matplotlib-users] How to turn off all clipping?

2009-03-19 Thread Eric Firing
Hatch, Sara J wrote: > Matplotlib Folks, > > > > How do I turn off all clipping when making a plot? It seems like > everything has a set_clip_on argument, but I couldn’t figure out how to > set all of these to False without explicitly doing so in every plot > call. I would assume that there

[Matplotlib-users] How to turn off all clipping?

2009-03-18 Thread Hatch, Sara J
Matplotlib Folks, How do I turn off all clipping when making a plot? It seems like everything has a set_clip_on argument, but I couldn't figure out how to set all of these to False without explicitly doing so in every plot call. I would assume that there is a way to do this using an rcParam or