Skip to content

Commit 11f44ee

Browse files
committed
remove named hatch param from pyplot.stackplot
1 parent c3f1633 commit 11f44ee

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

lib/matplotlib/pyplot.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4208,15 +4208,12 @@ def spy(
42084208

42094209
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
42104210
@_copy_docstring_and_deprecators(Axes.stackplot)
4211-
def stackplot(
4212-
x, *args, labels=(), colors=None, hatch=None, baseline="zero", data=None, **kwargs
4213-
):
4211+
def stackplot(x, *args, labels=(), colors=None, baseline="zero", data=None, **kwargs):
42144212
return gca().stackplot(
42154213
x,
42164214
*args,
42174215
labels=labels,
42184216
colors=colors,
4219-
hatch=hatch,
42204217
baseline=baseline,
42214218
**({"data": data} if data is not None else {}),
42224219
**kwargs,

0 commit comments

Comments
 (0)