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

Method add_table

lib/matplotlib/axes/_base.py:2618–2628  ·  view source on GitHub ↗

Add a `.Table` to the Axes; return the table.

(self, tab)

Source from the content-addressed store, hash-verified

2616 )
2617
2618 def add_table(self, tab):
2619 """
2620 Add a `.Table` to the Axes; return the table.
2621 """
2622 _api.check_isinstance(mtable.Table, tab=tab)
2623 self._set_artist_props(tab)
2624 self._children.append(tab)
2625 if tab.get_clip_path() is None:
2626 tab.set_clip_path(self.patch)
2627 tab._remove_method = self._children.remove
2628 return tab
2629
2630 def add_container(self, container):
2631 """

Callers 1

tableFunction · 0.80

Calls 3

_set_artist_propsMethod · 0.95
get_clip_pathMethod · 0.45
set_clip_pathMethod · 0.45

Tested by

no test coverage detected