color_cycle
Styling with cycler
Demo of custom property-cycle settings to control colors and other style
properties for multi-line plots.
::: tip Note
More complete documentation of the cycler API can be found
here.
:::
This example demonstrates two different APIs:
- Setting the default rc parameter specifying the property cycle.
This affects all subsequent axes (but not axes already created). - Setting the property cycle for a single pair of axes.
1 | from cycler import cycler |
First we’ll generate some sample data, in this case, four offset sine
curves.
1 | x = np.linspace(0, 2 * np.pi, 50) |
Now yy has shape
1 | print(yy.shape) |
Out:
1 | (50, 4) |
So yy[:, i] will give you the i-th offset sine curve. Let’s set the
default prop_cycle using matplotlib.pyplot.rc(). We’ll combine a
color cycler and a linestyle cycler by adding (+) two cycler‘s
together. See the bottom of this tutorial for more information about
combining different cyclers.
1 | default_cycler = (cycler(color=['r', 'g', 'b', 'y']) + |
Now we’ll generate a figure with two axes, one on top of the other. On the
first axis, we’ll plot with the default cycler. On the second axis, we’ll
set the prop_cycle using matplotlib.axes.Axes.set_prop_cycle(),
which will only set the prop_cycle for this matplotlib.axes.Axes
instance. We’ll use a second cycler that combines a color cycler and a
linewidth cycler.
1 | custom_cycler = (cycler(color=['c', 'm', 'y', 'k']) + |

Setting prop_cycle in the matplotlibrc file or style files
Remember, if you want to set a custom cycler in your.matplotlibrc file or a style file (style.mplstyle), you can set theaxes.prop_cycle property:
1 | axes.prop_cycle : cycler(color='bgrcmyk') |
Cycling through multiple properties
You can add cyclers:
1 | from cycler import cycler |
Results in:
1 | {'color': 'r', 'linestyle': '-'} |
You can multiply cyclers:
1 | from cycler import cycler |
Results in:
1 | {'color': 'r', 'linestyle': '-'} |




