Skip to content

Commit 4af11e7

Browse files
authored
Merge pull request matplotlib#29965 from rcomer/doc-axes-spines
Document Axes.spines
2 parents 4407d1d + 31d182a commit 4af11e7

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

doc/api/axes_api.rst

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ Attributes
3838

3939
Axes.viewLim
4040
Axes.dataLim
41+
Axes.spines
4142

4243
Plotting
4344
========

lib/matplotlib/axes/_base.py

+6
Original file line numberDiff line numberDiff line change
@@ -558,6 +558,12 @@ class _AxesBase(martist.Artist):
558558
dataLim: mtransforms.Bbox
559559
"""The bounding `.Bbox` enclosing all data displayed in the Axes."""
560560

561+
spines: mspines.Spines
562+
"""
563+
The `.Spines` container for the Axes' spines, i.e. the lines denoting the
564+
data area boundaries.
565+
"""
566+
561567
xaxis: maxis.XAxis
562568
"""
563569
The `.XAxis` instance.

0 commit comments

Comments
 (0)