(
xranges: Sequence[tuple[float, float]],
yrange: tuple[float, float],
align: Literal["bottom", "center", "top"] = "bottom",
*,
data: DataParamType = None,
**kwargs,
)
| 3268 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |
| 3269 | @_copy_docstring_and_deprecators(Axes.broken_barh) |
| 3270 | def 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. |
nothing calls this directly
no test coverage detected
searching dependent graphs…