Return True if each axis is autoscaled, False otherwise.
(self)
| 2775 | set_autoscaley_on = _axis_method_wrapper("yaxis", "_set_autoscale_on") |
| 2776 | |
| 2777 | def get_autoscale_on(self): |
| 2778 | """Return True if each axis is autoscaled, False otherwise.""" |
| 2779 | return all(axis._get_autoscale_on() |
| 2780 | for axis in self._axis_map.values()) |
| 2781 | |
| 2782 | def set_autoscale_on(self, b): |
| 2783 | """ |