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

Function broken_barh

lib/matplotlib/pyplot.py:3270–3284  ·  view source on GitHub ↗
(
    xranges: Sequence[tuple[float, float]],
    yrange: tuple[float, float],
    align: Literal["bottom", "center", "top"] = "bottom",
    *,
    data: DataParamType = None,
    **kwargs,
)

Source from the content-addressed store, hash-verified

3268# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
3269@_copy_docstring_and_deprecators(Axes.broken_barh)
3270def broken_barh(
3271 xranges: Sequence[tuple[float, float]],
3272 yrange: tuple[float, float],
3273 align: Literal["bottom", "center", "top"] = "bottom",
3274 *,
3275 data: DataParamType = None,
3276 **kwargs,
3277) -> PolyCollection:
3278 return gca().broken_barh(
3279 xranges,
3280 yrange,
3281 align=align,
3282 **({"data": data} if data is not None else {}),
3283 **kwargs,
3284 )
3285
3286
3287# Autogenerated by boilerplate.py. Do not edit as changes will be lost.

Callers

nothing calls this directly

Calls 2

gcaFunction · 0.85
broken_barhMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…