MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / pickable

Method pickable

lib/matplotlib/artist.py:528–536  ·  view source on GitHub ↗

Return whether the artist is pickable. See Also -------- .Artist.set_picker, .Artist.get_picker, .Artist.pick

(self)

Source from the content-addressed store, hash-verified

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

Callers 2

pickMethod · 0.95
__init__Method · 0.80

Calls 1

get_figureMethod · 0.95

Tested by

no test coverage detected