File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -299,7 +299,8 @@ class Axes(_AxesBase):
299
299
frame : bool = ...,
300
300
rotatelabels : bool = ...,
301
301
* ,
302
- normalize : bool = ...
302
+ normalize : bool = ...,
303
+ hatch : str | Sequence [str ] | None = ...
303
304
): ...
304
305
def errorbar (
305
306
self ,
Original file line number Diff line number Diff line change @@ -3468,6 +3468,7 @@ def pie(
3468
3468
rotatelabels : bool = False ,
3469
3469
* ,
3470
3470
normalize : bool = True ,
3471
+ hatch : str | Sequence [str ] | None = None ,
3471
3472
data = None ,
3472
3473
):
3473
3474
return gca ().pie (
@@ -3488,6 +3489,7 @@ def pie(
3488
3489
frame = frame ,
3489
3490
rotatelabels = rotatelabels ,
3490
3491
normalize = normalize ,
3492
+ hatch = hatch ,
3491
3493
** ({"data" : data } if data is not None else {}),
3492
3494
)
3493
3495
You can’t perform that action at this time.
0 commit comments