diff --git a/lib/matplotlib/lines.py b/lib/matplotlib/lines.py index 1e9341f0b98a..c9254a1bcf33 100644 --- a/lib/matplotlib/lines.py +++ b/lib/matplotlib/lines.py @@ -1292,6 +1292,8 @@ def set_dash_joinstyle(self, s): """ How to join segments of the line if it `~Line2D.is_dashed`. + The default joinstyle is :rc:`lines.dash_joinstyle`. + Parameters ---------- s : `.JoinStyle` or %(JoinStyle)s @@ -1306,6 +1308,8 @@ def set_solid_joinstyle(self, s): """ How to join segments if the line is solid (not `~Line2D.is_dashed`). + The default joinstyle is :rc:`lines.solid_joinstyle`. + Parameters ---------- s : `.JoinStyle` or %(JoinStyle)s diff --git a/lib/matplotlib/patches.py b/lib/matplotlib/patches.py index e4dc7ee1a646..7483f4777e44 100644 --- a/lib/matplotlib/patches.py +++ b/lib/matplotlib/patches.py @@ -494,6 +494,9 @@ def set_joinstyle(self, s): """ Set the `.JoinStyle`. + The default joinstyle is 'round' for `.FancyArrowPatch` and 'miter' for + all other patches. + Parameters ---------- s : `.JoinStyle` or %(JoinStyle)s