matplotlib / 3.5.1 / _as_gen / matplotlib.pyplot.title.html /

matplotlib.pyplot.title

matplotlib.pyplot. title ( label, fontdict=None, loc=None, pad=None, *, y=None, **kwargs ) [source]

Set a title for the Axes.

Set one of the three available Axes titles. The available titles are positioned above the Axes in the center, flush with the left edge, and flush with the right edge.

Parameters
label str

Text to use for the title

fontdict dict

A dictionary controlling the appearance of the title text, the default fontdict is:

{'fontsize': rcParams['axes.titlesize'],
 'fontweight': rcParams['axes.titleweight'],
 'color': rcParams['axes.titlecolor'],
 'verticalalignment': 'baseline',
 'horizontalalignment': loc}
loc {'center', 'left', 'right'}, default: rcParams["axes.titlelocation"] (default: 'center')

Which title to set.

y float, default: rcParams["axes.titley"] (default: None)

Vertical Axes loation for the title (1.0 is the top). If None (the default), y is determined automatically to avoid decorators on the Axes.

pad float, default: rcParams["axes.titlepad"] (default: 6.0)

The offset of the title from the top of the Axes, in points.

Returns
Text

The matplotlib text instance representing the title

Other Parameters
**kwargs Text properties

Other keyword arguments are text properties, see Text for a list of valid text properties.

Examples using matplotlib.pyplot.title

© 2012–2021 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/3.5.1/api/_as_gen/matplotlib.pyplot.title.html