Return the suptitle as string or an empty string if not set.
(self)
| 398 | return self._suplabels(t, info, **kwargs) |
| 399 | |
| 400 | def get_suptitle(self): |
| 401 | """Return the suptitle as string or an empty string if not set.""" |
| 402 | text_obj = self._suptitle |
| 403 | return "" if text_obj is None else text_obj.get_text() |
| 404 | |
| 405 | @_docstring.Substitution(x0=0.5, y0=0.01, name='super xlabel', ha='center', |
| 406 | va='bottom', rc='label') |