The rows spanned by this subplot, as a `range` object.
(self)
| 630 | |
| 631 | @property |
| 632 | def rowspan(self): |
| 633 | """The rows spanned by this subplot, as a `range` object.""" |
| 634 | ncols = self.get_gridspec().ncols |
| 635 | return range(self.num1 // ncols, self.num2 // ncols + 1) |
| 636 | |
| 637 | @property |
| 638 | def colspan(self): |
nothing calls this directly
no test coverage detected