spines
matplotlib.spines
-
class matplotlib.spines.Spine(axes, spine_type, path, **kwargs)[source] -
Bases:
matplotlib.patches.Patchan axis spine -- the line noting the data area boundaries
Spines are the lines connecting the axis tick marks and noting the boundaries of the data area. They can be placed at arbitrary positions. See function:
set_positionfor more information.The default position is
('outward',0).Spines are subclasses of class:
Patch, and inherit much of their behavior.Spines draw a line, a circle, or an arc depending if function:
set_patch_line, function:set_patch_circle, or function:set_patch_archas been called. Line-like is the default.- axes : the Axes instance containing the spine
- spine_type : a string specifying the spine type
- path : the path instance used to draw the spine
Valid kwargs are:
Property Description agg_filtera filter function, which takes a (m, n, 3) float array and a dpi value, and returns a (m, n, 3) array alphafloat or None animatedbool antialiasedor aabool or None capstyle['butt' | 'round' | 'projecting'] clip_boxa Bboxinstanceclip_onbool clip_path[( Path,Transform) |Patch| None]colormatplotlib color spec containsa callable function edgecoloror ecmpl color spec, None, 'none', or 'auto' facecoloror fcmpl color spec, or None for default, or 'none' for no color figurea Figureinstancefillbool gidan id string hatch['/' | '\' | '|' | '-' | '+' | 'x' | 'o' | 'O' | '.' | '*'] joinstyle['miter' | 'round' | 'bevel'] labelobject linestyleor ls['solid' | 'dashed', 'dashdot', 'dotted' | (offset, on-off-dash-seq) | '-'|'--'|'-.'|':'|'None'|' '|'']linewidthor lwfloat or None for default path_effectsAbstractPathEffectpicker[None | bool | float | callable] rasterizedbool or None sketch_params(scale: float, length: float, randomness: float) snapbool or None transformTransformurla url string visiblebool zorderfloat -
classmethod arc_spine(axes, spine_type, center, radius, theta1, theta2, **kwargs)[source] -
(classmethod) Returns an arc
Spine.
-
classmethod circular_spine(axes, center, radius, **kwargs)[source] -
(staticmethod) Returns a circular
Spine.
-
cla()[source] -
Clear the current spine
-
draw(renderer)[source] -
Draw the
Patchto the given renderer.
-
get_bounds()[source] -
Get the bounds of the spine.
-
get_patch_transform()[source] -
Return the
Transforminstance which takes patch coordinates to data coordinates.For example, one may define a patch of a circle which represents a radius of 5 by providing coordinates for a unit circle, and a transform which scales the coordinates (the patch coordinate) by 5.
-
get_path()[source] -
Return the path of this patch
-
get_position()[source] -
get the spine position
-
get_smart_bounds()[source] -
get whether the spine has smart bounds
-
get_spine_transform()[source] -
get the spine transform
-
is_frame_like()[source] -
return True if directly on axes frame
This is useful for determining if a spine is the edge of an old style MPL plot. If so, this function will return True.
-
classmethod linear_spine(axes, spine_type, **kwargs)[source] -
(staticmethod) Returns a linear
Spine.
-
register_axis(axis)[source] -
register an axis
An axis should be registered with its corresponding spine from the Axes instance. This allows the spine to clear any axis properties when needed.
-
set_bounds(low, high)[source] -
Set the bounds of the spine.
-
set_color(c)[source] -
Set the edgecolor.
ACCEPTS: matplotlib color arg or sequence of rgba tuples
See also
-
set_facecolor(), set_edgecolor() - For setting the edge or face color individually.
-
-
set_patch_arc(center, radius, theta1, theta2)[source] -
set the spine to be arc-like
-
set_patch_circle(center, radius)[source] -
set the spine to be circular
-
set_patch_line()[source] -
set the spine to be linear
-
set_position(position)[source] -
set the position of the spine
Spine position is specified by a 2 tuple of (position type, amount). The position types are:
- 'outward' : place the spine out from the data area by the specified number of points. (Negative values specify placing the spine inward.)
- 'axes' : place the spine at the specified Axes coordinate (from 0.0-1.0).
- 'data' : place the spine at the specified data coordinate.
Additionally, shorthand notations define a special positions:
- 'center' -> ('axes',0.5)
- 'zero' -> ('data', 0.0)
-
set_smart_bounds(value)[source] -
set the spine and associated axis to have smart bounds
© 2012–2018 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/2.2.3/api/spines_api.html