mpl_toolkits.mplot3d.axes3d.Axes3D.get_tightbbox#
- Axes3D.get_tightbbox(renderer=None,*,call_axes_locator=True,bbox_extra_artists=None,for_layout_only=False)[source]#
Return the tight bounding box of the Axes, including axis and theirdecorators (xlabel, title, etc).
Artists that have
artist.set_in_layout(False)are not includedin the bbox.- Parameters:
- renderer
RendererBasesubclass renderer that will be used to draw the figures (i.e.
fig.canvas.get_renderer())- bbox_extra_artistslist of
ArtistorNone List of artists to include in the tight bounding box. If
None(default), then all artist children of the Axes areincluded in the tight bounding box.- call_axes_locatorbool, default: True
Ifcall_axes_locator is
False, it does not call the_axes_locatorattribute, which is necessary to get the correctbounding box.call_axes_locator=Falsecan be used if thecaller is only interested in the relative size of the tightbboxcompared to the Axes bbox.- for_layout_onlydefault: False
The bounding box willnot include the x-extent of the title andthe xlabel, or the y-extent of the ylabel.
- renderer
- Returns:
BboxBaseBounding box in figure pixel coordinates.