Return lists of bboxes for ticks' label1's and label2's.
(self, ticks, renderer)
| 1400 | return ticks_to_draw |
| 1401 | |
| 1402 | def _get_ticklabel_bboxes(self, ticks, renderer): |
| 1403 | """Return lists of bboxes for ticks' label1's and label2's.""" |
| 1404 | return ([tick.label1.get_window_extent(renderer) |
| 1405 | for tick in ticks |
| 1406 | if tick.label1.get_visible() and tick.label1.get_in_layout()], |
| 1407 | [tick.label2.get_window_extent(renderer) |
| 1408 | for tick in ticks |
| 1409 | if tick.label2.get_visible() and tick.label2.get_in_layout()]) |
| 1410 | |
| 1411 | def get_tightbbox(self, renderer=None, *, for_layout_only=False): |
| 1412 | """ |
no test coverage detected