matplotlib.figure.Figure(figsize=None, dpi=None, facecolor=None, edgecolor=None, linewidth=0.0, frameon=None, subplotpars=None, tight_layout=None)¶The Figure instance supports callbacks through a callbacks
attribute which is a matplotlib.cbook.CallbackRegistry
instance. The events you can connect to are ‘dpi_changed’, and
the callback will be called with func(fig) where fig is the
Figure instance.
matplotlib.patches.Rectangle instancefigure.facecolorfigure.edgecolorSubplotParams instance, defaults to rctight_layout() with default padding.
When providing a dict containing the keys pad, w_pad, h_pad
and rect, the default tight_layout() paddings will be
overridden.
Defaults to rc figure.autolayout.matplotlib.figure.Figure¶