8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 440062e + 6da0a6b commit 7ecd4b9Copy full SHA for 7ecd4b9
lib/matplotlib/lines.py
@@ -1099,6 +1099,7 @@ def set_linewidth(self, w):
1099
Parameters
1100
----------
1101
w : float
1102
+ Line width, in points.
1103
"""
1104
w = float(w)
1105
@@ -1231,6 +1232,7 @@ def set_markeredgewidth(self, ew):
1231
1232
1233
1234
ew : float
1235
+ Marker edge width, in points.
1236
1237
if ew is None:
1238
ew = rcParams['lines.markeredgewidth']
@@ -1273,6 +1275,7 @@ def set_markersize(self, sz):
1273
1275
1274
1276
1277
sz : float
1278
+ Marker size, in points.
1279
1280
sz = float(sz)
1281
if self._markersize != sz:
0 commit comments