(
*,
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,
)
| 4399 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |
| 4400 | @_copy_docstring_and_deprecators(Axes.ticklabel_format) |
| 4401 | def 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. |
nothing calls this directly
no test coverage detected
searching dependent graphs…