matplotlib.typing#

matplotlib.typing.RGBColorType#

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

matplotlib.typing.RGBColourType#

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

matplotlib.typing.RGBAColorType#

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

matplotlib.typing.RGBAColourType#

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

matplotlib.typing.ColorType#

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

matplotlib.typing.ColourType#

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

matplotlib.typing.LineStyleType#

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

matplotlib.typing.DrawStyleType#

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

matplotlib.typing.MarkEveryType#

alias of Union[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 Union[CapStyle, Literal['butt', 'projecting', 'round']]

matplotlib.typing.JoinStyleType#

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

matplotlib.typing.RcStyleType#

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

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

A nested list of Hashable values.

alias of list[Union[_HT, HashableList[_HT]]]