Return the values (min, max) that are mapped to the colormap limits.
(self)
| 358 | return self._colorizer.to_rgba(x, alpha=alpha, bytes=bytes, norm=norm) |
| 359 | |
| 360 | def get_clim(self): |
| 361 | """ |
| 362 | Return the values (min, max) that are mapped to the colormap limits. |
| 363 | """ |
| 364 | return self._colorizer.get_clim() |
| 365 | |
| 366 | def set_clim(self, vmin=None, vmax=None): |
| 367 | """ |