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

Method get_children

lib/mpl_toolkits/axisartist/axislines.py:441–447  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

439 self.gridlines.set(**kwargs)
440
441 def get_children(self):
442 if self._axisline_on:
443 children = [*self._axislines.values(), self.gridlines]
444 else:
445 children = []
446 children.extend(super().get_children())
447 return children
448
449 def new_fixed_axis(self, loc, offset=None):
450 return self.get_grid_helper().new_fixed_axis(loc, offset=offset, axes=self)

Callers 3

clearMethod · 0.45
pickMethod · 0.45
drawMethod · 0.45

Calls 1

valuesMethod · 0.80

Tested by

no test coverage detected