Set the hatchcolor(s) of the collection. Parameters ---------- c : :mpltype:`color` or list of :mpltype:`color` or 'edge' The collection hatchcolor(s). If a sequence, the patches cycle through it.
(self, c)
| 938 | self.stale = True |
| 939 | |
| 940 | def set_hatchcolor(self, c): |
| 941 | """ |
| 942 | Set the hatchcolor(s) of the collection. |
| 943 | |
| 944 | Parameters |
| 945 | ---------- |
| 946 | c : :mpltype:`color` or list of :mpltype:`color` or 'edge' |
| 947 | The collection hatchcolor(s). If a sequence, the patches cycle |
| 948 | through it. |
| 949 | """ |
| 950 | self._original_hatchcolor = c |
| 951 | self._set_hatchcolor(c) |
| 952 | |
| 953 | def set_alpha(self, alpha): |
| 954 | """ |
no test coverage detected