(self, cmap)
| 1189 | super().set_norm(norm) |
| 1190 | |
| 1191 | def set_cmap(self, cmap): |
| 1192 | if self._A is not None: |
| 1193 | raise RuntimeError('Cannot change colors after loading data') |
| 1194 | super().set_cmap(cmap) |
| 1195 | |
| 1196 | def get_cursor_data(self, event): |
| 1197 | # docstring inherited |
no outgoing calls