MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / set_markersize

Method set_markersize

lib/matplotlib/lines.py:1287–1299  ·  view source on GitHub ↗

Set the marker size in points. Parameters ---------- sz : float Marker size, in points.

(self, sz)

Source from the content-addressed store, hash-verified

1285 self._markeredgewidth = ew
1286
1287 def set_markersize(self, sz):
1288 """
1289 Set the marker size in points.
1290
1291 Parameters
1292 ----------
1293 sz : float
1294 Marker size, in points.
1295 """
1296 sz = float(sz)
1297 if self._markersize != sz:
1298 self.stale = True
1299 self._markersize = sz
1300
1301 def set_xdata(self, x):
1302 """

Callers 6

__init__Method · 0.95
create_artistsMethod · 0.95
create_artistsMethod · 0.95
create_artistsMethod · 0.95
_apply_paramsMethod · 0.80
apply_callbackFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected