MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / fill_betweenx

Function fill_betweenx

lib/matplotlib/pyplot.py:3521–3541  ·  view source on GitHub ↗
(
    y: ArrayLike,
    x1: ArrayLike | float,
    x2: ArrayLike | float = 0,
    where: Sequence[bool] | None = None,
    step: Literal["pre", "post", "mid"] | None = None,
    interpolate: bool = False,
    *,
    data: DataParamType = None,
    **kwargs,
)

Source from the content-addressed store, hash-verified

3519# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
3520@_copy_docstring_and_deprecators(Axes.fill_betweenx)
3521def fill_betweenx(
3522 y: ArrayLike,
3523 x1: ArrayLike | float,
3524 x2: ArrayLike | float = 0,
3525 where: Sequence[bool] | None = None,
3526 step: Literal["pre", "post", "mid"] | None = None,
3527 interpolate: bool = False,
3528 *,
3529 data: DataParamType = None,
3530 **kwargs,
3531) -> FillBetweenPolyCollection:
3532 return gca().fill_betweenx(
3533 y,
3534 x1,
3535 x2=x2,
3536 where=where,
3537 step=step,
3538 interpolate=interpolate,
3539 **({"data": data} if data is not None else {}),
3540 **kwargs,
3541 )
3542
3543
3544# Autogenerated by boilerplate.py. Do not edit as changes will be lost.

Callers

nothing calls this directly

Calls 2

gcaFunction · 0.85
fill_betweenxMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…