diff --git a/lib/matplotlib/collections.py b/lib/matplotlib/collections.py index fb137cc503e1..b29f69606d9d 100644 --- a/lib/matplotlib/collections.py +++ b/lib/matplotlib/collections.py @@ -524,9 +524,6 @@ def set_hatch(self, hatch): hatchings are done. If same letter repeats, it increases the density of hatching of that pattern. - Hatching is supported in the PostScript, PDF, SVG and Agg - backends only. - Unlike other properties such as linewidth and colors, hatching can only be specified for the collection as a whole, not separately for each member. diff --git a/lib/matplotlib/contour.py b/lib/matplotlib/contour.py index 90167bd320e8..0e6068c64b62 100644 --- a/lib/matplotlib/contour.py +++ b/lib/matplotlib/contour.py @@ -1808,8 +1808,6 @@ def _initialize_x_y(self, z): A list of cross hatch patterns to use on the filled areas. If None, no hatching will be added to the contour. - Hatching is supported in the PostScript, PDF, SVG and Agg - backends only. algorithm : {'mpl2005', 'mpl2014', 'serial', 'threaded'}, optional Which contouring algorithm to use to calculate the contour lines and diff --git a/lib/matplotlib/patches.py b/lib/matplotlib/patches.py index 65e3822e5d02..2899952634a9 100644 --- a/lib/matplotlib/patches.py +++ b/lib/matplotlib/patches.py @@ -558,9 +558,6 @@ def set_hatch(self, hatch): hatchings are done. If same letter repeats, it increases the density of hatching of that pattern. - Hatching is supported in the PostScript, PDF, SVG and Agg - backends only. - Parameters ---------- hatch : {'/', '\\', '|', '-', '+', 'x', 'o', 'O', '.', '*'} diff --git a/lib/matplotlib/tri/_tricontour.py b/lib/matplotlib/tri/_tricontour.py index 5dc1eb81593c..1db3715d01af 100644 --- a/lib/matplotlib/tri/_tricontour.py +++ b/lib/matplotlib/tri/_tricontour.py @@ -255,8 +255,6 @@ def tricontourf(ax, *args, **kwargs): hatches : list[str], optional A list of crosshatch patterns to use on the filled areas. If None, no hatching will be added to the contour. - Hatching is supported in the PostScript, PDF, SVG and Agg - backends only. Notes -----