Return the supylabel as string or an empty string if not set.
(self)
| 429 | return self._suplabels(t, info, **kwargs) |
| 430 | |
| 431 | def get_supylabel(self): |
| 432 | """Return the supylabel as string or an empty string if not set.""" |
| 433 | text_obj = self._supylabel |
| 434 | return "" if text_obj is None else text_obj.get_text() |
| 435 | |
| 436 | def get_edgecolor(self): |
| 437 | """Get the edge color of the Figure rectangle.""" |