Set the fontsize in points. If *s* is not given, reset to :rc:`legend.fontsize`.
(self, s=None)
| 1449 | martist.Artist.set_figure(self, fig) |
| 1450 | |
| 1451 | def set_fontsize(self, s=None): |
| 1452 | """ |
| 1453 | Set the fontsize in points. |
| 1454 | |
| 1455 | If *s* is not given, reset to :rc:`legend.fontsize`. |
| 1456 | """ |
| 1457 | s = mpl._val_or_rc(s, "legend.fontsize") |
| 1458 | self.prop = FontProperties(size=s) |
| 1459 | self.stale = True |
| 1460 | |
| 1461 | def get_fontsize(self): |
| 1462 | """Return the fontsize in points.""" |