Return the Axes bounding box in display space. This bounding box does not include the spines, ticks, ticklabels, or other labels. For a bounding box including these elements use `~matplotlib.axes.Axes.get_tightbbox`. See Also -------- matpl
(self, renderer=None)
| 853 | return self._subplotspec.get_gridspec() if self._subplotspec else None |
| 854 | |
| 855 | def get_window_extent(self, renderer=None): |
| 856 | """ |
| 857 | Return the Axes bounding box in display space. |
| 858 | |
| 859 | This bounding box does not include the spines, ticks, ticklabels, |
| 860 | or other labels. For a bounding box including these elements use |
| 861 | `~matplotlib.axes.Axes.get_tightbbox`. |
| 862 | |
| 863 | See Also |
| 864 | -------- |
| 865 | matplotlib.axes.Axes.get_tightbbox |
| 866 | matplotlib.axis.Axis.get_tightbbox |
| 867 | matplotlib.spines.Spine.get_window_extent |
| 868 | """ |
| 869 | return self.bbox |
| 870 | |
| 871 | def _init_axis(self): |
| 872 | # This is moved out of __init__ because non-separable axes don't use it |
no outgoing calls