diff --git a/lib/matplotlib/axes/_base.py b/lib/matplotlib/axes/_base.py index 32ed73ebd591..ab6cc4dd5993 100644 --- a/lib/matplotlib/axes/_base.py +++ b/lib/matplotlib/axes/_base.py @@ -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, @@ -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 @@ -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 @@ -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