Return the pixel position of the annotated point.
(self, renderer)
| 1796 | return self._annotation_clip |
| 1797 | |
| 1798 | def _get_position_xy(self, renderer): |
| 1799 | """Return the pixel position of the annotated point.""" |
| 1800 | return self._get_xy(renderer, self.xy, self.xycoords) |
| 1801 | |
| 1802 | def _check_xy(self, renderer=None): |
| 1803 | """Check whether the annotation at *xy_pixel* should be drawn.""" |
no test coverage detected