Set the patch edge color. Parameters ---------- color : :mpltype:`color` or None
(self, color)
| 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') |