|
From: John H. <jdh...@ac...> - 2005-01-12 15:49:15
|
>>>>> "Edward" == Edward Abraham <Edw...@da...> writes:
Edward> At present, the clip_on property needs to be set manually,
Edward> 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
|