Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions lib/matplotlib/axes/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1554,10 +1554,12 @@ def set_prop_cycle(self, *args, **kwargs):

Parameters
----------
cycler : Cycler
cycler : `~cycler.Cycler`
Set the given Cycler. *None* resets to the cycle defined by the
current style.

.. ACCEPTS: `~cycler.Cycler`

label : str
The property key. Must be a valid `.Artist` property.
For example, 'color' or 'linestyle'. Aliases are allowed,
Expand Down Expand Up @@ -3521,6 +3523,8 @@ def set_xbound(self, lower=None, upper=None):
The lower and upper bounds. If *None*, the respective axis bound
is not modified.

.. ACCEPTS: (lower: float, upper: float)

See Also
--------
get_xbound
Expand Down Expand Up @@ -3594,7 +3598,7 @@ def set_xlim(self, left=None, right=None, *, emit=True, auto=False,
(*left*, *right*) as the first positional argument (or as
the *left* keyword argument).

.. ACCEPTS: (bottom: float, top: float)
.. ACCEPTS: (left: float, right: float)

right : float, optional
The right xlim in data coordinates. Passing *None* leaves the
Expand Down Expand Up @@ -3770,6 +3774,8 @@ def set_ybound(self, lower=None, upper=None):
The lower and upper bounds. If *None*, the respective axis bound
is not modified.

.. ACCEPTS: (lower: float, upper: float)

See Also
--------
get_ybound
Expand Down