MCPcopy Create free account
hub / github.com/ColdGrub1384/Pyto / __init__

Method __init__

site-packages/matplotlib/widgets.py:1905–1913  ·  view source on GitHub ↗
(self, ax, x, y, marker='o', marker_props=None, useblit=True)

Source from the content-addressed store, hash-verified

1903 """
1904
1905 def __init__(self, ax, x, y, marker='o', marker_props=None, useblit=True):
1906 self.ax = ax
1907
1908 props = dict(marker=marker, markersize=7, mfc='w', ls='none',
1909 alpha=0.5, visible=False, label='_nolegend_')
1910 props.update(marker_props if marker_props is not None else {})
1911 self._markers = Line2D(x, y, animated=useblit, **props)
1912 self.ax.add_line(self._markers)
1913 self.artist = self._markers
1914
1915 @property
1916 def x(self):

Callers

nothing calls this directly

Calls 3

Line2DClass · 0.85
add_lineMethod · 0.80
updateMethod · 0.45

Tested by

no test coverage detected