diff --git a/doc/api/next_api_changes/removals/24XXX-OG.rst b/doc/api/next_api_changes/removals/24942-OG.rst similarity index 100% rename from doc/api/next_api_changes/removals/24XXX-OG.rst rename to doc/api/next_api_changes/removals/24942-OG.rst diff --git a/doc/users/next_whats_new/pie_hatch.rst b/doc/users/next_whats_new/pie_hatch.rst deleted file mode 100644 index f54def10e954..000000000000 --- a/doc/users/next_whats_new/pie_hatch.rst +++ /dev/null @@ -1,18 +0,0 @@ -``hatch`` parameter for pie -------------------------------------------- - -`~matplotlib.axes.Axes.pie` now accepts a *hatch* keyword that takes as input -a hatch or list of hatches: - -.. plot:: - :include-source: true - :alt: Two pie charts, identified as ax1 and ax2, both have a small blue slice, a medium orange slice, and a large green slice. ax1 has a dot hatching on the small slice, a small open circle hatching on the medium slice, and a large open circle hatching on the large slice. ax2 has the same large open circle with a dot hatch on every slice. - - fig, (ax1, ax2) = plt.subplots(ncols=2) - x = [10, 30, 60] - - ax1.pie(x, hatch=['.', 'o', 'O']) - ax2.pie(x, hatch='.O') - - ax1.set_title("hatch=['.', 'o', 'O']") - ax2.set_title("hatch='.O'") diff --git a/doc/users/next_whats_new/widget_button_styling.rst b/doc/users/next_whats_new/widget_button_styling.rst deleted file mode 100644 index 4307e6977fc5..000000000000 --- a/doc/users/next_whats_new/widget_button_styling.rst +++ /dev/null @@ -1,31 +0,0 @@ -Custom styling of button widgets --------------------------------- - -Additional custom styling of button widgets may be achieved via the -*label_props* and *radio_props* arguments to `.RadioButtons`; and the -*label_props*, *frame_props*, and *check_props* arguments to `.CheckButtons`. - -.. plot:: - - from matplotlib.widgets import CheckButtons, RadioButtons - - fig, ax = plt.subplots(nrows=2, ncols=2, figsize=(5, 2), width_ratios=[1, 2]) - default_rb = RadioButtons(ax[0, 0], ['Apples', 'Oranges']) - styled_rb = RadioButtons(ax[0, 1], ['Apples', 'Oranges'], - label_props={'color': ['red', 'orange'], - 'fontsize': [16, 20]}, - radio_props={'edgecolor': ['red', 'orange'], - 'facecolor': ['mistyrose', 'peachpuff']}) - - default_cb = CheckButtons(ax[1, 0], ['Apples', 'Oranges'], - actives=[True, True]) - styled_cb = CheckButtons(ax[1, 1], ['Apples', 'Oranges'], - actives=[True, True], - label_props={'color': ['red', 'orange'], - 'fontsize': [16, 20]}, - frame_props={'edgecolor': ['red', 'orange'], - 'facecolor': ['mistyrose', 'peachpuff']}, - check_props={'color': ['darkred', 'darkorange']}) - - ax[0, 0].set_title('Default') - ax[0, 1].set_title('Stylized')