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

Method get_suptitle

lib/matplotlib/figure.py:400–403  ·  view source on GitHub ↗

Return the suptitle as string or an empty string if not set.

(self)

Source from the content-addressed store, hash-verified

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')

Calls 1

get_textMethod · 0.45