diff --git a/lib/matplotlib/figure.py b/lib/matplotlib/figure.py index dee0de8c5691..8b6420535e61 100644 --- a/lib/matplotlib/figure.py +++ b/lib/matplotlib/figure.py @@ -1596,7 +1596,10 @@ def get_default_bbox_extra_artists(self): def get_tightbbox(self, renderer, bbox_extra_artists=None): """ - Return a (tight) bounding box of the figure in inches. + Return a (tight) bounding box of the figure *in inches*. + + Note that `.FigureBase` differs from all other artists, which return + their `.Bbox` in pixels. Artists that have ``artist.set_in_layout(False)`` are not included in the bbox.