Axes.set_prop_cycle(self, *args, **kwargs)
Set the property cycle of the Axes.
The property cycle controls the style properties such as color, marker and linestyle of future plot commands. The style properties of data already added to the Axes are not modified.
Call signatures:
set_prop_cycle(cycler) set_prop_cycle(label=values[, label2=values2[, ...]]) set_prop_cycle(label, values)
Form 1 sets given Cycler
object.
Form 2 creates a Cycler
which cycles over one or more properties simultaneously and set it as the property cycle of the axes. If multiple properties are given, their value lists must have the same length. This is just a shortcut for explicitly creating a cycler and passing it to the function, i.e. it's short for set_prop_cycle(cycler(label=values label2=values2, ...))
.
Form 3 creates a Cycler
for a single property and set it as the property cycle of the axes. This form exists for compatibility with the original cycler.cycler
interface. Its use is discouraged in favor of the kwarg form, i.e. set_prop_cycle(label=values)
.
Parameters: |
|
---|
See also
matplotlib.rcsetup.cycler
cycler.cycler
Setting the property cycle for a single property:
>>> ax.set_prop_cycle(color=['red', 'green', 'blue'])
Setting the property cycle for simultaneously cycling over multiple properties (e.g. red circle, green plus, blue cross):
>>> ax.set_prop_cycle(color=['red', 'green', 'blue'], ... marker=['o', '+', 'x'])
matplotlib.axes.Axes.set_prop_cycle
© 2012–2018 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/3.1.1/api/_as_gen/matplotlib.axes.Axes.set_prop_cycle.html