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

Method set_markeredgewidth

lib/matplotlib/lines.py:1273–1285  ·  view source on GitHub ↗

Set the marker edge width in points. Parameters ---------- ew : float Marker edge width, in points.

(self, ew)

Source from the content-addressed store, hash-verified

1271 self._set_markercolor("markerfacecoloralt", False, fc)
1272
1273 def set_markeredgewidth(self, ew):
1274 """
1275 Set the marker edge width in points.
1276
1277 Parameters
1278 ----------
1279 ew : float
1280 Marker edge width, in points.
1281 """
1282 ew = mpl._val_or_rc(ew, 'lines.markeredgewidth')
1283 if self._markeredgewidth != ew:
1284 self.stale = True
1285 self._markeredgewidth = ew
1286
1287 def set_markersize(self, sz):
1288 """

Callers 2

__init__Method · 0.95
_apply_paramsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected