We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a80304 commit a7f5ce6Copy full SHA for a7f5ce6
doc/api/axes_api.rst
@@ -38,6 +38,7 @@ Attributes
38
39
Axes.viewLim
40
Axes.dataLim
41
+ Axes.spines
42
43
Plotting
44
========
lib/matplotlib/axes/_base.py
@@ -566,6 +566,12 @@ class _AxesBase(martist.Artist):
566
dataLim: mtransforms.Bbox
567
"""The bounding `.Bbox` enclosing all data displayed in the Axes."""
568
569
+ spines: mspines.Spines
570
+ """
571
+ The `.Spines` container for the Axes' spines, i.e. the lines denoting the
572
+ data area boundaries.
573
574
+
575
xaxis: maxis.XAxis
576
"""
577
The `.XAxis` instance.
0 commit comments