(self, path, transform=None)
| 1160 | return kwtrans |
| 1161 | |
| 1162 | def set_clip_path(self, path, transform=None): |
| 1163 | super().set_clip_path(path, transform) |
| 1164 | for child in self.majorTicks + self.minorTicks: |
| 1165 | child.set_clip_path(path, transform) |
| 1166 | self.stale = True |
| 1167 | |
| 1168 | def get_view_interval(self): |
| 1169 | """Return the ``(min, max)`` view limits of this axis.""" |
no test coverage detected