(self, ax, x, y, *, marker='o', marker_props=None, useblit=True)
| 3234 | """ |
| 3235 | |
| 3236 | def __init__(self, ax, x, y, *, marker='o', marker_props=None, useblit=True): |
| 3237 | self.ax = ax |
| 3238 | props = {'marker': marker, 'markersize': 7, 'markerfacecolor': 'w', |
| 3239 | 'linestyle': 'none', 'alpha': 0.5, 'visible': False, |
| 3240 | 'label': '_nolegend_', |
| 3241 | **cbook.normalize_kwargs(marker_props, Line2D)} |
| 3242 | self._markers = Line2D(x, y, animated=useblit, **props) |
| 3243 | self.ax.add_line(self._markers) |
| 3244 | |
| 3245 | @property |
| 3246 | def x(self): |