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

Function ticklabel_format

lib/matplotlib/pyplot.py:4401–4417  ·  view source on GitHub ↗
(
    *,
    axis: Literal["both", "x", "y"] = "both",
    style: Literal["", "sci", "scientific", "plain"] | None = None,
    scilimits: tuple[int, int] | None = None,
    useOffset: bool | float | None = None,
    useLocale: bool | None = None,
    useMathText: bool | None = None,
)

Source from the content-addressed store, hash-verified

4399# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
4400@_copy_docstring_and_deprecators(Axes.ticklabel_format)
4401def ticklabel_format(
4402 *,
4403 axis: Literal["both", "x", "y"] = "both",
4404 style: Literal["", "sci", "scientific", "plain"] | None = None,
4405 scilimits: tuple[int, int] | None = None,
4406 useOffset: bool | float | None = None,
4407 useLocale: bool | None = None,
4408 useMathText: bool | None = None,
4409) -> None:
4410 gca().ticklabel_format(
4411 axis=axis,
4412 style=style,
4413 scilimits=scilimits,
4414 useOffset=useOffset,
4415 useLocale=useLocale,
4416 useMathText=useMathText,
4417 )
4418
4419
4420# Autogenerated by boilerplate.py. Do not edit as changes will be lost.

Callers

nothing calls this directly

Calls 2

gcaFunction · 0.85
ticklabel_formatMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…