Return the range *vmin*, *vmax*, restricted to the domain supported by the current scale.
(self, vmin, vmax)
| 831 | **{f"scale{k}": k == name for k in self.axes._axis_names}) |
| 832 | |
| 833 | def limit_range_for_scale(self, vmin, vmax): |
| 834 | """ |
| 835 | Return the range *vmin*, *vmax*, restricted to the domain supported by the |
| 836 | current scale. |
| 837 | """ |
| 838 | return self._scale.limit_range_for_scale(vmin, vmax, self.get_minpos()) |
| 839 | |
| 840 | def _nan_out_of_scale_range(self, data): |
| 841 | """ |
no test coverage detected