Thanks to visit codestin.com Credit goes to github.com
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.
1 parent 4a1d051 commit 5d04569Copy full SHA for 5d04569
1 file changed
lib/matplotlib/collections.py
@@ -1041,14 +1041,15 @@ def determine_facecolor(patch):
1041
facecolors = [determine_facecolor(p) for p in patches]
1042
edgecolors = [p.get_edgecolor() for p in patches]
1043
linewidths = [p.get_linewidth() for p in patches]
1044
+ linestyles = [p.get_linestyle() for p in patches]
1045
antialiaseds = [p.get_antialiased() for p in patches]
1046
1047
Collection.__init__(
1048
self,
1049
edgecolors=edgecolors,
1050
facecolors=facecolors,
1051
linewidths=linewidths,
- linestyles='solid',
1052
+ linestyles=linestyles,
1053
antialiaseds = antialiaseds)
1054
else:
1055
Collection.__init__(self, **kwargs)
0 commit comments