Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d21f1ca

Browse files
authored
Merge pull request #14741 from sameshl/update_plot_doc
DOC: Update description of properties of Line2D in 'plot' documentation.
2 parents d5554d8 + fe41f28 commit d21f1ca

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/matplotlib/lines.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1095,6 +1095,7 @@ def set_linewidth(self, w):
10951095
Parameters
10961096
----------
10971097
w : float
1098+
Line width, in points.
10981099
"""
10991100
w = float(w)
11001101

@@ -1227,6 +1228,7 @@ def set_markeredgewidth(self, ew):
12271228
Parameters
12281229
----------
12291230
ew : float
1231+
Marker edge width, in points.
12301232
"""
12311233
if ew is None:
12321234
ew = rcParams['lines.markeredgewidth']
@@ -1269,6 +1271,7 @@ def set_markersize(self, sz):
12691271
Parameters
12701272
----------
12711273
sz : float
1274+
Marker size, in points.
12721275
"""
12731276
sz = float(sz)
12741277
if self._markersize != sz:

0 commit comments

Comments
 (0)