Scale column widths by *xscale* and row heights by *yscale*.
(self, xscale, yscale)
| 543 | cell.set_fontsize(fontsize) |
| 544 | |
| 545 | def scale(self, xscale, yscale): |
| 546 | """Scale column widths by *xscale* and row heights by *yscale*.""" |
| 547 | for c in self._cells.values(): |
| 548 | c.set_width(c.get_width() * xscale) |
| 549 | c.set_height(c.get_height() * yscale) |
| 550 | |
| 551 | def set_fontsize(self, size): |
| 552 | """ |