(self, A)
| 2577 | return vmin + value * (vmax - vmin) |
| 2578 | |
| 2579 | def autoscale(self, A): |
| 2580 | # docstring inherited |
| 2581 | with self.callbacks.blocked(): |
| 2582 | # Pause callbacks while we are updating so we only get |
| 2583 | # a single update signal at the end |
| 2584 | self.vmin = self.vmax = None |
| 2585 | self.autoscale_None(A) |
| 2586 | self._changed() |
| 2587 | |
| 2588 | def autoscale_None(self, A): |
| 2589 | # docstring inherited |