(self, renderer, xy, coords)
| 1690 | self._draggable = None |
| 1691 | |
| 1692 | def _get_xy(self, renderer, xy, coords): |
| 1693 | x, y = xy |
| 1694 | xcoord, ycoord = coords if isinstance(coords, tuple) else (coords, coords) |
| 1695 | if xcoord == 'data': |
| 1696 | x = float(self.convert_xunits(x)) |
| 1697 | if ycoord == 'data': |
| 1698 | y = float(self.convert_yunits(y)) |
| 1699 | return self._get_xy_transform(renderer, coords).transform((x, y)) |
| 1700 | |
| 1701 | def _get_xy_transform(self, renderer, coords): |
| 1702 |
no test coverage detected