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

Method get_children

lib/matplotlib/axes/_base.py:4629–4639  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

4627 return [*self._children, *self._axis_map.values()]
4628
4629 def get_children(self):
4630 # docstring inherited.
4631 return [
4632 *self._children,
4633 *self.spines.values(),
4634 *self._axis_map.values(),
4635 self.title, self._left_title, self._right_title,
4636 *self.child_axes,
4637 *([self.legend_] if self.legend_ is not None else []),
4638 self.patch,
4639 ]
4640
4641 def contains(self, mouseevent):
4642 # docstring inherited.

Callers 10

drawMethod · 0.95
test_legend_alignmentFunction · 0.45
test_contour_removeFunction · 0.45
test_packersFunction · 0.45
wrapperFunction · 0.45

Calls 1

valuesMethod · 0.80

Tested by 7

test_legend_alignmentFunction · 0.36
test_contour_removeFunction · 0.36
test_packersFunction · 0.36