Retrieve autoscaling margin of the y-axis. .. versionadded:: 3.9 Returns ------- ymargin : float See Also -------- :ref:`autoscale_margins` matplotlib.axes.Axes.set_ymargin
(self)
| 2838 | return self._xmargin |
| 2839 | |
| 2840 | def get_ymargin(self): |
| 2841 | """ |
| 2842 | Retrieve autoscaling margin of the y-axis. |
| 2843 | |
| 2844 | .. versionadded:: 3.9 |
| 2845 | |
| 2846 | Returns |
| 2847 | ------- |
| 2848 | ymargin : float |
| 2849 | |
| 2850 | See Also |
| 2851 | -------- |
| 2852 | :ref:`autoscale_margins` |
| 2853 | matplotlib.axes.Axes.set_ymargin |
| 2854 | """ |
| 2855 | return self._ymargin |
| 2856 | |
| 2857 | def set_xmargin(self, m): |
| 2858 | """ |
no outgoing calls