Return the view limits ``(min, max)`` of the axis the tick belongs to.
(self)
| 312 | a.set_figure(self.get_figure(root=False)) |
| 313 | |
| 314 | def get_view_interval(self): |
| 315 | """ |
| 316 | Return the view limits ``(min, max)`` of the axis the tick belongs to. |
| 317 | """ |
| 318 | raise NotImplementedError('Derived must override') |
| 319 | |
| 320 | def _apply_params(self, **kwargs): |
| 321 | for name, target in [("gridOn", self.gridline), |
no outgoing calls
no test coverage detected