Clip_on not being set

At present, the clip_on property needs to be set manually,

    > rather than from within the plot command Cheers,

OK, I believe I fixed this in CVS. In artist.py, replace set_clip_on
with

    def set_clip_on(self, b):
        """
Set whether artist uses clipping

ACCEPTS: [True | False]
"""
        self._clipon = b
        if not b: self.clipbox = None

And let me know if this fixes your problem.

Thanks for the report,
JDH