Return whether the artist is pickable. See Also -------- .Artist.set_picker, .Artist.get_picker, .Artist.pick
(self)
| 526 | return False, {} |
| 527 | |
| 528 | def pickable(self): |
| 529 | """ |
| 530 | Return whether the artist is pickable. |
| 531 | |
| 532 | See Also |
| 533 | -------- |
| 534 | .Artist.set_picker, .Artist.get_picker, .Artist.pick |
| 535 | """ |
| 536 | return self.get_figure(root=False) is not None and self._picker is not None |
| 537 | |
| 538 | def pick(self, mouseevent): |
| 539 | """ |
no test coverage detected