Set the color for low out-of-range values.
(self, color='k', alpha=None)
| 890 | pending=True, |
| 891 | alternative="cmap.with_extremes(under=...) or Colormap(under=...)") |
| 892 | def set_under(self, color='k', alpha=None): |
| 893 | """Set the color for low out-of-range values.""" |
| 894 | self._set_extremes(under=(color, alpha)) |
| 895 | |
| 896 | def get_over(self): |
| 897 | """Get the color for high out-of-range values.""" |
no test coverage detected