Return the short axis
(self)
| 1318 | return self.extend in ('both', minmax) |
| 1319 | |
| 1320 | def _short_axis(self): |
| 1321 | """Return the short axis""" |
| 1322 | if self.orientation == 'vertical': |
| 1323 | return self.ax.xaxis |
| 1324 | return self.ax.yaxis |
| 1325 | |
| 1326 | def _get_view(self): |
| 1327 | # docstring inherited |
no outgoing calls
no test coverage detected