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
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 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