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)
| 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 | """ |
no outgoing calls