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

Method get_adjustable

lib/matplotlib/axes/_base.py:1772–1786  ·  view source on GitHub ↗

Return whether the Axes will adjust its physical dimension ('box') or its data limits ('datalim') to achieve the desired aspect ratio. Newly created Axes default to 'box'. See Also -------- matplotlib.axes.Axes.set_adjustable Set how the

(self)

Source from the content-addressed store, hash-verified

1770 self.stale = True
1771
1772 def get_adjustable(self):
1773 """
1774 Return whether the Axes will adjust its physical dimension ('box') or
1775 its data limits ('datalim') to achieve the desired aspect ratio.
1776
1777 Newly created Axes default to 'box'.
1778
1779 See Also
1780 --------
1781 matplotlib.axes.Axes.set_adjustable
1782 Set how the Axes adjusts to achieve the required aspect ratio.
1783 matplotlib.axes.Axes.set_aspect
1784 For a description of aspect handling.
1785 """
1786 return self._adjustable
1787
1788 def set_adjustable(self, adjustable, share=False):
1789 """

Calls

no outgoing calls