8000
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 d6d1588 commit be79428Copy full SHA for be79428
lib/matplotlib/axes/_axes.pyi
@@ -299,7 +299,8 @@ class Axes(_AxesBase):
299
frame: bool = ...,
300
rotatelabels: bool = ...,
301
*,
302
- normalize: bool = ...
+ normalize: bool = ...,
303
+ hatch: str | Sequence[str] | None = ...
304
): ...
305
def errorbar(
306
self,
lib/matplotlib/pyplot.py
@@ -3483,6 +3483,7 @@ def pie(
3483
rotatelabels: bool = False,
3484
3485
normalize: bool = True,
3486
+ hatch: str | Sequence[str] | None = None,
3487
data=None,
3488
):
3489
return gca().pie(
@@ -3503,6 +3504,7 @@ def pie(
3503
3504
frame=frame,
3505
rotatelabels=rotatelabels,
3506
normalize=normalize,
3507
+ hatch=hatch,
3508
**({"data": data} if data is not None else {}),
3509
)
3510
0 commit comments