(self, *args, **kwargs)
| 530 | """ |
| 531 | |
| 532 | def __init__(self, *args, **kwargs): |
| 533 | super().__init__(*args, **kwargs) |
| 534 | self.label1.set_rotation_mode('anchor') |
| 535 | self.label2.set_rotation_mode('anchor') |
| 536 | |
| 537 | def _determine_anchor(self, mode, angle, start): |
| 538 | # Note: angle is the (spine angle - 90) because it's used for the tick |
nothing calls this directly
no test coverage detected