matplotlib.typing#

matplotlib.typing.RGBColorType#

alias of tuple[float, float, float] | str

matplotlib.typing.RGBColourType#

alias of tuple[float, float, float] | str

matplotlib.typing.RGBAColorType#

alias of str | tuple[float, float, float, float] | tuple[tuple[float, float, float] | str, float] | tuple[tuple[float, float, float, float], float]

matplotlib.typing.RGBAColourType#

alias of str | tuple[float, float, float, float] | tuple[tuple[float, float, float] | str, float] | tuple[tuple[float, float, float, float], float]

matplotlib.typing.ColorType#

alias of tuple[float, float, float] | str | tuple[float, float, float, float] | tuple[tuple[float, float, float] | str, float] | tuple[tuple[float, float, float, float], float]

matplotlib.typing.ColourType#

alias of tuple[float, float, float] | str | tuple[float, float, float, float] | tuple[tuple[float, float, float] | str, float] | tuple[tuple[float, float, float, float], float]

matplotlib.typing.LineStyleType#

alias of str | tuple[float, Sequence[float]]

matplotlib.typing.DrawStyleType#

alias of Literal['default', 'steps', 'steps-pre', 'steps-mid', 'steps-post']

matplotlib.typing.MarkEveryType#

alias of None | int | tuple[int, int] | slice | list[int] | float | tuple[float, float] | list[bool]

matplotlib.typing.FillStyleType#

alias of Literal['full', 'left', 'right', 'bottom', 'top', 'none']

matplotlib.typing.CapStyleType#

alias of CapStyle | Literal['butt', 'projecting', 'round']

matplotlib.typing.JoinStyleType#

alias of JoinStyle | Literal['miter', 'round', 'bevel']

matplotlib.typing.RcStyleType#

alias of str | dict[str, Any] | Path | Sequence[str | Path | dict[str, Any]]

matplotlib.typing.HashableList(iterable=(), /)#

A nested list of Hashable values.

alias of list[_HT | HashableList[_HT]]