Get the color for high out-of-range values.
(self)
| 894 | self._set_extremes(under=(color, alpha)) |
| 895 | |
| 896 | def get_over(self): |
| 897 | """Get the color for high out-of-range values.""" |
| 898 | self._ensure_inited() |
| 899 | return np.array(self._lut[self._i_over]) |
| 900 | |
| 901 | @_api.deprecated( |
| 902 | "3.11", |