diff --git a/doc/users/dflt_style_changes.rst b/doc/users/dflt_style_changes.rst index b0ab000a6bcb..43eaf97b3f7e 100644 --- a/doc/users/dflt_style_changes.rst +++ b/doc/users/dflt_style_changes.rst @@ -426,13 +426,14 @@ obscuring data too much. fig, (old, new) = plt.subplots(ncols=2, sharey=True) with plt.style.context('default'): new.boxplot(data, labels=['A', 'B', 'C', 'D']) - new.set_title('New boxplots') + new.set_title('v2.0') with plt.style.context('classic'): old.boxplot(data, labels=['A', 'B', 'C', 'D']) - old.set_title('Old boxplots') + old.set_title('classic') - new.set_ylim(bottom=0) + new.set_yscale('log') + old.set_yscale('log') The previous defaults can be restored by setting:: @@ -551,7 +552,7 @@ default. The default face color is now ``'C0'`` instead of ``'b'``. The previous defaults can be restored by setting:: mpl.rcParams['patch.force_edgecolor'] = True - mpl.rcParams['patch.facecolor'] = True + mpl.rcParams['patch.facecolor'] = 'b' or by setting:: @@ -1130,10 +1131,3 @@ mplot3d - grid.color - grid.linewidth - grid.linestyle - - - -TEMPORARY NOTES TOM IS KEEPING IN THE SOURCE SO THEY DO NOT GET LOST -==================================================================== - -- lines.color change, only hits raw usage of Line2D diff --git a/doc/users/whats_new.rst b/doc/users/whats_new.rst index 62ee469d72de..63ae0de63a80 100644 --- a/doc/users/whats_new.rst +++ b/doc/users/whats_new.rst @@ -53,7 +53,7 @@ New rcparams added +---------------------------------+--------------------------------------------------+ | Parameter | Description | +=================================+==================================================+ -|`date.autoformatter.year` | foramt string for 'year' scale dates | +|`date.autoformatter.year` | format string for 'year' scale dates | +---------------------------------+--------------------------------------------------+ |`date.autoformatter.month` | format string for 'month' scale dates | +---------------------------------+--------------------------------------------------+