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

Method set_edgecolor

lib/matplotlib/patches.py:385–394  ·  view source on GitHub ↗

Set the patch edge color. Parameters ---------- color : :mpltype:`color` or None

(self, color)

Source from the content-addressed store, hash-verified

383 self.stale = True
384
385 def set_edgecolor(self, color):
386 """
387 Set the patch edge color.
388
389 Parameters
390 ----------
391 color : :mpltype:`color` or None
392 """
393 self._original_edgecolor = color
394 self._set_edgecolor(color)
395
396 def _set_facecolor(self, color):
397 color = mpl._val_or_rc(color, 'patch.facecolor')

Callers 15

__init__Method · 0.95
set_colorMethod · 0.95
__init__Method · 0.45
set_colorMethod · 0.45
__clearMethod · 0.45
color_violinsFunction · 0.45
test_color_logicFunction · 0.45
test_multi_color_hatchFunction · 0.45

Calls 1

_set_edgecolorMethod · 0.95