8000
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 773096e commit a686716Copy full SHA for a686716
doc/api/axes_api.rst
@@ -274,6 +274,8 @@ Axis / limits
274
:template: autosummary.rst
275
:nosignatures:
276
277
+ Axes.xaxis
278
+ Axes.yaxis
279
Axes.get_xaxis
280
Axes.get_yaxis
281
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
+ xaxis: maxis.XAxis
570
+ """The x-axis."""
571
+
572
+ yaxis: maxis.YAxis
573
+ """The y-axis."""
574
575
@property
576
def _axis_map(self):
577
"""A mapping of axis names, e.g. 'x', to `Axis` instances."""
0 commit comments