We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb8680f commit 816cc4fCopy full SHA for 816cc4f
lib/matplotlib/axes/_base.py
@@ -2579,7 +2579,7 @@ def in_axes(self, mouseevent):
2579
def get_autoscale_on(self):
2580
"""Return True if each axis is autoscaled, False otherwise."""
2581
return all(axis._get_autoscale_on()
2582
- for axis in self._get_axis_map().values())
+ for axis in self._axis_map.values())
2583
2584
def set_autoscale_on(self, b):
2585
"""
@@ -2590,7 +2590,7 @@ def set_autoscale_on(self, b):
2590
----------
2591
b : bool
2592
2593
- for axis in self._get_axis_map().values():
+ for axis in self._axis_map.values():
2594
axis._set_autoscale_on(b)
2595
2596
@property
0 commit comments