|
| 1 | +Added ``axes.prop_cycle`` key to rcParams |
| 2 | +````````````````````````````````````````` |
| 3 | +This is a more generic form of the now-deprecated ``axes.color_cycle`` param. |
| 4 | +Now, we can cycle more than just colors, but also linestyles, hatches, |
| 5 | +and just about any other artist property. Cycler notation is used for |
| 6 | +defining proprty cycles. Adding cyclers together will be like you are |
| 7 | +`zip()`-ing together two or more property cycles together:: |
| 8 | + |
| 9 | + axes.prop_cycle: cycler('color', 'rgb') + cycler('lw', [1, 2, 3]) |
| 10 | + |
| 11 | +You can even multiply cyclers, which is like using `itertools.product()` |
| 12 | +on two or more property cycles. Remember to use parentheses if writing |
| 13 | +a multi-line `prop_cycle` parameter. |
| 14 | + |
| 15 | +..plot:: mpl_examples/color/color_cycle_demo.py |
| 16 | + |
1 | 17 | Added ``errorbar.capsize`` key to rcParams
|
2 | 18 | ``````````````````````````````````````````
|
3 | 19 | Controls the length of end caps on error bars. If set to zero, errorbars
|
@@ -45,7 +61,9 @@ default), ``'left'``, ``'right'``, ``'bottom'``, ``'top'`` and ``'none'``.
|
45 | 61 | Added "toolmanager" to "toolbar" possible values
|
46 | 62 | ````````````````````````````````````````````````
|
47 | 63 |
|
48 |
| -The new value enables the use of ``ToolManager`` |
| 64 | +The new value enables the use of ``ToolManager``. Note at the moment we |
| 65 | +release this for feedback and should get treated as experimental until further |
| 66 | +notice. |
49 | 67 |
|
50 | 68 |
|
51 | 69 | Added ``axes.labelpad``
|
|
0 commit comments