@@ -574,6 +574,9 @@ def set_markevery(self, every):
574
574
be 0.5 multiplied by the display-coordinate-diagonal-distance
575
575
along the line.
576
576
577
+ For examples see
578
+ :doc:`/gallery/lines_bars_and_markers/markevery_demo`.
579
+
577
580
Notes
578
581
-----
579
582
Setting the markevery property will only show markers at actual data
@@ -1079,6 +1082,7 @@ def set_drawstyle(self, drawstyle):
1079
1082
- 'steps' is equal to 'steps-pre' and is maintained for
1080
1083
backward-compatibility.
1081
1084
1085
+ For examples see :doc:`/gallery/lines_bars_and_markers/step_demo`.
1082
1086
"""
1083
1087
if drawstyle is None :
1084
1088
drawstyle = 'default'
@@ -1171,6 +1175,8 @@ def set_linestyle(self, ls):
1171
1175
1172
1176
where ``onoffseq`` is an even length tuple of on and off ink
1173
1177
in points. See also :meth:`set_dashes`.
1178
+
1179
+ For examples see :doc:`/gallery/lines_bars_and_markers/linestyles`.
1174
1180
"""
1175
1181
if isinstance (ls , str ):
1176
1182
ds , ls = self ._split_drawstyle_linestyle (ls )
@@ -1325,7 +1331,7 @@ def set_dashes(self, seq):
1325
1331
self .set_linestyle ((0 , seq ))
1326
1332
1327
1333
def update_from (self , other ):
1328
- """Copy properties from other to self."""
1334
+ """Copy properties from * other* to self."""
1329
1335
Artist .update_from (self , other )
1330
1336
self ._linestyle = other ._linestyle
1331
1337
self ._linewidth = other ._linewidth
@@ -1402,6 +1408,7 @@ def set_dash_capstyle(self, s):
1402
1408
Parameters
1403
1409
----------
1404
1410
s : {'butt', 'round', 'projecting'}
1411
+ For examples see :doc:`/gallery/lines_bars_and_markers/joinstyle`.
1405
1412
"""
1406
1413
s = s .lower ()
1407
1414
cbook ._check_in_list (self .validCap , s = s )
@@ -1416,6 +1423,7 @@ def set_solid_capstyle(self, s):
1416
1423
Parameters
1417
1424
----------
1418
1425
s : {'butt', 'round', 'projecting'}
1426
+ For examples see :doc:`/gallery/lines_bars_and_markers/joinstyle`.
1419
1427
"""
1420
1428
s = s .lower ()
1421
1429
cbook ._check_in_list (self .validCap , s = s )
0 commit comments