Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Module « matplotlib.figure »

Classe « FigureBase »

Informations générales

Héritage

builtins.object
    Artist
        FigureBase

Définition

class FigureBase(Artist):

Description [extrait de FigureBase.__doc__]

    Base class for `.figure.Figure` and `.figure.SubFigure` containing the
    methods that add artists to the figure or subfigure, create Axes, etc.
    

Constructeur(s)

Signature du constructeur Description
__init__(self)

Liste des attributs statiques

Nom de l'attribut Valeur
zorder0

Liste des propriétés

Nom de la propriétéDescription
axesThe `~.axes.Axes` instance the artist resides in, or *None*. [extrait de __doc__]
frameon
mouseover
stale
sticky_edges

Liste des opérateurs

Opérateurs hérités de la classe object

__eq__, __ge__, __gt__, __le__, __lt__, __ne__

Liste des méthodes

Toutes les méthodes Méthodes d'instance Méthodes statiques Méthodes dépréciées
Signature de la méthodeDescription
add_artist(self, artist, clip=False)
add_axes(self, *args, **kwargs) Add an Axes to the figure. [extrait de add_axes.__doc__]
add_gridspec(self, nrows=1, ncols=1, **kwargs)
add_subfigure(self, subplotspec, **kwargs)
add_subplot(self, *args, **kwargs) Add an `~.axes.Axes` to the figure as part of a subplot arrangement. [extrait de add_subplot.__doc__]
align_labels(self, axs=None)
align_xlabels(self, axs=None)
align_ylabels(self, axs=None)
autofmt_xdate(self, bottom=0.2, rotation=30, ha='right', which='major')
colorbar(self, mappable, cax=None, ax=None, use_gridspec=True, **kw)
contains(self, mouseevent)
delaxes(self, ax)
gca(self, **kwargs) Get the current Axes, creating one if necessary. [extrait de gca.__doc__]
get_children(self) Get a list of artists contained in the figure. [extrait de get_children.__doc__]
get_default_bbox_extra_artists(self)
get_edgecolor(self) Get the edge color of the Figure rectangle. [extrait de get_edgecolor.__doc__]
get_facecolor(self) Get the face color of the Figure rectangle. [extrait de get_facecolor.__doc__]
get_frameon(self)
get_linewidth(self)
get_tightbbox(self, renderer, bbox_extra_artists=None)
get_window_extent(self, *args, **kwargs)
legend(self, *args, **kwargs) Place a legend on the figure. [extrait de legend.__doc__]
sca(self, a) Set the current Axes to be *a* and return *a*. [extrait de sca.__doc__]
set_edgecolor(self, color)
set_facecolor(self, color)
set_frameon(self, b)
set_linewidth(self, linewidth)
subfigures(self, nrows=1, ncols=1, squeeze=True, wspace=None, hspace=None, width_ratios=None, height_ratios=None, **kwargs)
subplot_mosaic(self, mosaic, *, subplot_kw=None, gridspec_kw=None, empty_sentinel='.')
subplots(self, nrows=1, ncols=1, *, sharex=False, sharey=False, squeeze=True, subplot_kw=None, gridspec_kw=None)
subplots_adjust(self, left=None, bottom=None, right=None, top=None, wspace=None, hspace=None)
suptitle(self, t, **kwargs) Add a centered suptitle to the figure. [extrait de suptitle.__doc__]
supxlabel(self, t, **kwargs) Add a centered supxlabel to the figure. [extrait de supxlabel.__doc__]
supylabel(self, t, **kwargs) Add a centered supylabel to the figure. [extrait de supylabel.__doc__]
text(self, x, y, s, fontdict=None, **kwargs) Add text to figure. [extrait de text.__doc__]

Méthodes héritées de la classe Artist

__getstate__, __init_subclass__, __subclasshook__, add_callback, convert_xunits, convert_yunits, draw, findobj, format_cursor_data, get_agg_filter, get_alpha, get_animated, get_clip_box, get_clip_on, get_clip_path, get_contains, get_cursor_data, get_figure, get_gid, get_in_layout, get_label, get_path_effects, get_picker, get_rasterized, get_sketch_params, get_snap, get_transform, get_transformed_clip_path_and_affine, get_url, get_visible, get_zorder, have_units, is_transform_set, pchanged, pick, pickable, properties, remove, remove_callback, set, set_agg_filter, set_alpha, set_animated, set_clip_box, set_clip_on, set_clip_path, set_contains, set_figure, set_gid, set_in_layout, set_label, set_path_effects, set_picker, set_rasterized, set_sketch_params, set_snap, set_transform, set_url, set_visible, set_zorder, update, update_from

Méthodes héritées de la classe object

__delattr__, __dir__, __format__, __getattribute__, __hash__, __init_subclass__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__