Label the x axis on the bottom row of the grid.
(self, label: str | None = None, **kwargs: Any)
| 903 | getattr(ax, f"set_{axis}label")(label, **kwargs) |
| 904 | |
| 905 | def set_xlabels(self, label: str | None = None, **kwargs: Any) -> None: |
| 906 | """Label the x axis on the bottom row of the grid.""" |
| 907 | self._set_labels("x", self._bottom_axes, label, **kwargs) |
| 908 | |
| 909 | def set_ylabels(self, label: str | None = None, **kwargs: Any) -> None: |
| 910 | """Label the y axis on the left column of the grid.""" |
nothing calls this directly
no test coverage detected