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

Method set_props

lib/matplotlib/widgets.py:2603–2614  ·  view source on GitHub ↗

Set the properties of the selector artist. See the *props* argument in the selector docstring to know which properties are supported.

(self, **props)

Source from the content-addressed store, hash-verified

2601 return (self._selection_artist,) + handles_artists
2602
2603 def set_props(self, **props):
2604 """
2605 Set the properties of the selector artist.
2606
2607 See the *props* argument in the selector docstring to know which properties are
2608 supported.
2609 """
2610 artist = self._selection_artist
2611 props = cbook.normalize_kwargs(props, artist)
2612 artist.set(**props)
2613 if self.useblit:
2614 self.update()
2615
2616 def set_handle_props(self, **handle_props):
2617 """

Calls 2

updateMethod · 0.95
setMethod · 0.45