Return the ``(min, max)`` data limits of this axis.
(self)
| 1185 | raise NotImplementedError('Derived must override') |
| 1186 | |
| 1187 | def get_data_interval(self): |
| 1188 | """Return the ``(min, max)`` data limits of this axis.""" |
| 1189 | raise NotImplementedError('Derived must override') |
| 1190 | |
| 1191 | def set_data_interval(self, vmin, vmax, ignore=False): |
| 1192 | """ |
no outgoing calls
no test coverage detected