(self, mappable, **kwargs)
| 17 | super().__init__(*args, **kwargs) |
| 18 | |
| 19 | def colorbar(self, mappable, **kwargs): |
| 20 | return self.get_figure(root=False).colorbar( |
| 21 | mappable, cax=self, location=self.orientation, **kwargs) |
| 22 | |
| 23 | |
| 24 | _cbaraxes_class_factory = cbook._make_class_factory(CbarAxesBase, "Cbar{}") |