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

Method _get_data_children

lib/matplotlib/axes/_base.py:4615–4627  ·  view source on GitHub ↗

Return artists that represent data (plot lines, collections, images, patches, etc.) as opposed to auxiliary artists needed to draw the Axes itself (spines, titles, axis objects, etc.). Data children are the artists that can contribute to autoscaling and stic

(self)

Source from the content-addressed store, hash-verified

4613 self.set_ylim(points[:, 1])
4614
4615 def _get_data_children(self):
4616 """
4617 Return artists that represent data (plot lines, collections, images,
4618 patches, etc.) as opposed to auxiliary artists needed to draw the
4619 Axes itself (spines, titles, axis objects, etc.).
4620
4621 Data children are the artists that can contribute to autoscaling
4622 and sticky edges.
4623
4624 Note: This is a preliminary definition and has not been thought
4625 through completely. We may want to revise this later.
4626 """
4627 return [*self._children, *self._axis_map.values()]
4628
4629 def get_children(self):
4630 # docstring inherited.

Callers 1

autoscale_viewMethod · 0.80

Calls 1

valuesMethod · 0.80

Tested by

no test coverage detected