MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / get_autoscale_on

Method get_autoscale_on

lib/matplotlib/axes/_base.py:2777–2780  ·  view source on GitHub ↗

Return True if each axis is autoscaled, False otherwise.

(self)

Source from the content-addressed store, hash-verified

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 """

Callers 3

test_autoscale_tightFunction · 0.80
test_hist2d_autolimitsFunction · 0.80
autoscale.pyFile · 0.80

Calls 2

_get_autoscale_onMethod · 0.80
valuesMethod · 0.80

Tested by 2

test_autoscale_tightFunction · 0.64
test_hist2d_autolimitsFunction · 0.64