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

Function pie_label

lib/matplotlib/pyplot.py:4014–4031  ·  view source on GitHub ↗
(
    container: PieContainer,
    /,
    labels: str | Sequence[str],
    *,
    distance: float = 0.6,
    textprops: dict | None = None,
    rotate: bool = False,
    alignment: str = "auto",
)

Source from the content-addressed store, hash-verified

4012# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
4013@_copy_docstring_and_deprecators(Axes.pie_label)
4014def pie_label(
4015 container: PieContainer,
4016 /,
4017 labels: str | Sequence[str],
4018 *,
4019 distance: float = 0.6,
4020 textprops: dict | None = None,
4021 rotate: bool = False,
4022 alignment: str = "auto",
4023) -> list[Text]:
4024 return gca().pie_label(
4025 container,
4026 labels,
4027 distance=distance,
4028 textprops=textprops,
4029 rotate=rotate,
4030 alignment=alignment,
4031 )
4032
4033
4034# Autogenerated by boilerplate.py. Do not edit as changes will be lost.

Callers

nothing calls this directly

Calls 2

gcaFunction · 0.85
pie_labelMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…