(self, view)
| 1329 | return self.norm.vmin, self.norm.vmax |
| 1330 | |
| 1331 | def _set_view(self, view): |
| 1332 | # docstring inherited |
| 1333 | # An interactive view for a colorbar is the norm's vmin/vmax |
| 1334 | self.norm.vmin, self.norm.vmax = view |
| 1335 | |
| 1336 | def _set_view_from_bbox(self, bbox, direction='in', |
| 1337 | mode=None, twinx=False, twiny=False): |
no outgoing calls
no test coverage detected