Set the axis view limits. This method is for internal use; Matplotlib users should typically use e.g. `~.Axes.set_xlim` or `~.Axes.set_ylim`. If *ignore* is False (the default), this method will never reduce the preexisting view limits, only expand them if *vmin* o
(self, vmin, vmax, ignore=False)
| 1170 | raise NotImplementedError('Derived must override') |
| 1171 | |
| 1172 | def set_view_interval(self, vmin, vmax, ignore=False): |
| 1173 | """ |
| 1174 | Set the axis view limits. This method is for internal use; Matplotlib |
| 1175 | users should typically use e.g. `~.Axes.set_xlim` or `~.Axes.set_ylim`. |
| 1176 | |
| 1177 | If *ignore* is False (the default), this method will never reduce the |
| 1178 | preexisting view limits, only expand them if *vmin* or *vmax* are not |
| 1179 | within them. Moreover, the order of *vmin* and *vmax* does not matter; |
| 1180 | the orientation of the axis will not change. |
| 1181 | |
| 1182 | If *ignore* is True, the view limits will be set exactly to ``(vmin, |
| 1183 | vmax)`` in that order. |
| 1184 | """ |
| 1185 | raise NotImplementedError('Derived must override') |
| 1186 | |
| 1187 | def get_data_interval(self): |
| 1188 | """Return the ``(min, max)`` data limits of this axis.""" |
no outgoing calls
no test coverage detected