On this page
mpl_toolkits.axisartist.axis_artist.AxisLabel
- class
mpl_toolkits.axisartist.axis_artist.
AxisLabel
(*args, axis_direction='bottom', axis=None, **kwargs)[source] -
Bases:
mpl_toolkits.axisartist.axis_artist.AttributeCopier
,mpl_toolkits.axisartist.axis_artist.LabelBase
Axis Label. Derived from Text. The position of the text is updated in the fly, so changing text position has no effect. Otherwise, the properties can be changed as a normal Text.
To change the pad between ticklabels and axis label, use set_pad.
__init__
(*args, axis_direction='bottom', axis=None, **kwargs)[source]-
Initialize self. See help(type(self)) for accurate signature.
__module__
= 'mpl_toolkits.axisartist.axis_artist'
draw
(renderer)[source]-
Draw the Artist (and its children) using the given renderer.
This has no effect if the artist is not visible (
Artist.get_visible
returns False).Parameters: -
renderer
RendererBase
subclass.
Notes
This method is overridden in the Artist subclasses.
-
renderer
get_color
()[source]-
Return the color of the text.
get_ref_artist
()[source]-
Return the underlying artist that actually defines some properties (e.g., color) of this artist.
get_text
()[source]-
Return the text string.
get_window_extent
(renderer)[source]-
Return the
Bbox
bounding the text, in display units.In addition to being used internally, this is useful for specifying clickable regions in a png file on a web page.
Parameters: - rendererRenderer, optional
-
A renderer is needed to compute the bounding box. If the artist has already been drawn, the renderer is cached; thus, it is only necessary to pass this argument when calling
get_window_extent
before the firstdraw
. In practice, it is usually easier to trigger a draw first (e.g. by saving the figure). - dpifloat, optional
-
The dpi value for computing the bbox, defaults to
self.figure.dpi
(not the renderer dpi); should be set e.g. if to match regions with a figure saved with a custom dpi value.
set_axis_direction
(d)[source]-
Adjust the text angle and text alignment of axis label according to the matplotlib convention.
property left bottom right top axislabel angle 180 0 0 180 axislabel va center top center bottom axislabel ha right center right center Note that the text angles are actually relative to (90 + angle of the direction to the ticklabel), which gives 0 for bottom axis.
set_default_alignment
(d)[source]
set_default_angle
(d)[source]
set_pad
(pad)[source]-
Set the internal pad in points.
The actual pad will be the sum of the internal pad and the external pad (the latter is set automatically by the AxisArtist).
Examples using mpl_toolkits.axisartist.axis_artist.AxisLabel
© 2012–2021 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/3.4.3/api/_as_gen/mpl_toolkits.axisartist.axis_artist.AxisLabel.html