Return the axis name.
(self)
| 737 | return [ax._axis_map[name] for ax in self._get_shared_axes()] |
| 738 | |
| 739 | def _get_axis_name(self): |
| 740 | """Return the axis name.""" |
| 741 | return next(name for name, axis in self.axes._axis_map.items() |
| 742 | if axis is self) |
| 743 | |
| 744 | # During initialization, Axis objects often create ticks that are later |
| 745 | # unused; this turns out to be a very slow step. Instead, use a custom |
no outgoing calls
no test coverage detected