Update the label position based on the bounding box enclosing all the ticklabels and axis spine.
(self, renderer)
| 2406 | return bboxes, bboxes2 |
| 2407 | |
| 2408 | def _update_label_position(self, renderer): |
| 2409 | """ |
| 2410 | Update the label position based on the bounding box enclosing |
| 2411 | all the ticklabels and axis spine. |
| 2412 | """ |
| 2413 | raise NotImplementedError('Derived must override') |
| 2414 | |
| 2415 | def _update_offset_text_position(self, bboxes, bboxes2): |
| 2416 | """ |
no outgoing calls
no test coverage detected