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

Skip to content

Commit 03efb75

Browse files
authored
Merge pull request #22217 from meeseeksmachine/auto-backport-of-pr-22209-on-v3.5.x
Backport PR #22209 on branch v3.5.x (DOC: Document default join style)
2 parents febbcf6 + 4690f0d commit 03efb75

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

lib/matplotlib/lines.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1293,6 +1293,8 @@ def set_dash_joinstyle(self, s):
12931293
"""
12941294
How to join segments of the line if it `~Line2D.is_dashed`.
12951295
1296+
The default joinstyle is :rc:`lines.dash_joinstyle`.
1297+
12961298
Parameters
12971299
----------
12981300
s : `.JoinStyle` or %(JoinStyle)s
@@ -1307,6 +1309,8 @@ def set_solid_joinstyle(self, s):
13071309
"""
13081310
How to join segments if the line is solid (not `~Line2D.is_dashed`).
13091311
1312+
The default joinstyle is :rc:`lines.solid_joinstyle`.
1313+
13101314
Parameters
13111315
----------
13121316
s : `.JoinStyle` or %(JoinStyle)s

lib/matplotlib/patches.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -499,6 +499,9 @@ def set_joinstyle(self, s):
499499
"""
500500
Set the `.JoinStyle`.
501501
502+
The default joinstyle is 'round' for `.FancyArrowPatch` and 'miter' for
503+
all other patches.
504+
502505
Parameters
503506
----------
504507
s : `.JoinStyle` or %(JoinStyle)s

0 commit comments

Comments
 (0)