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)
| 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. |