We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4ed5a8c + 1a56221 commit 070425cCopy full SHA for 070425c
lib/matplotlib/table.py
@@ -279,7 +279,9 @@ def get_children(self):
279
280
def get_window_extent(self, renderer):
281
'Return the bounding box of the table in window coords'
282
- boxes = [c.get_window_extent(renderer) for c in self._cells]
+ boxes = [cell.get_window_extent(renderer)
283
+ for cell in self._cells.values()]
284
+
285
return Bbox.union(boxes)
286
287
def _do_cell_alignment(self):
0 commit comments