Return the hatch color.
(self)
| 345 | return self._facecolor |
| 346 | |
| 347 | def get_hatchcolor(self): |
| 348 | """Return the hatch color.""" |
| 349 | if self._hatch_color == 'edge': |
| 350 | if self._edgecolor[3] == 0: # fully transparent |
| 351 | return colors.to_rgba(mpl.rcParams['patch.edgecolor']) |
| 352 | return self.get_edgecolor() |
| 353 | return self._hatch_color |
| 354 | |
| 355 | def get_linewidth(self): |
| 356 | """Return the line width in points.""" |