Get the xlabel text string.
(self)
| 3714 | # data limits, ticks, tick labels, and formatting |
| 3715 | |
| 3716 | def get_xlabel(self): |
| 3717 | """ |
| 3718 | Get the xlabel text string. |
| 3719 | """ |
| 3720 | label = self.xaxis.label |
| 3721 | return label.get_text() |
| 3722 | |
| 3723 | def set_xlabel(self, xlabel, fontdict=None, labelpad=None, *, |
| 3724 | loc=None, **kwargs): |