We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6507004 commit 9a6635dCopy full SHA for 9a6635d
lib/matplotlib/pyplot.py
@@ -3534,6 +3534,7 @@ def grouped_bar(
3534
labels: Sequence[str] | None = None,
3535
orientation: Literal["vertical", "horizontal"] = "vertical",
3536
colors: Iterable[ColorType] | None = None,
3537
+ hatch: str | Sequence[str] | None = None,
3538
**kwargs,
3539
) -> list[BarContainer]:
3540
return gca().grouped_bar(
@@ -3545,6 +3546,7 @@ def grouped_bar(
3545
3546
labels=labels,
3547
orientation=orientation,
3548
colors=colors,
3549
+ hatch=hatch,
3550
3551
)
3552
0 commit comments