Thanks to visit codestin.com Credit goes to github.com
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.
2 parents cb8680f + 816cc4f commit 7aed240Copy full SHA for 7aed240
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