8000 clip_on documentation note/warning by fariza · Pull Request #2929 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

clip_on documentation note/warning #2929

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 29, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/matplotlib/artist.py
Original file line number Diff line number Diff line change
Expand Up @@ -644,6 +644,9 @@ def set_clip_on(self, b):
"""
Set whether artist uses clipping.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you change this to 'Set whether the artist is clipped to the axes.'


When False artists will be visible out side of the axes which
can lead to unexpected results.

ACCEPTS: [True | False]
"""
self._clipon = b
Expand Down
0