Set *vmin* and *vmax*.
(self, A)
| 2773 | A.max()-self._vcenter) |
| 2774 | |
| 2775 | def autoscale_None(self, A): |
| 2776 | """Set *vmin* and *vmax*.""" |
| 2777 | A = np.asanyarray(A) |
| 2778 | if self.halfrange is None and A.size: |
| 2779 | self.autoscale(A) |
| 2780 | |
| 2781 | @property |
| 2782 | def vmin(self): |