Skip to content

Commit f581300

Browse files
authored
Pass artist_kws to scatter artist (#2921)
1 parent 36cc26b commit f581300

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

seaborn/_marks/scatter.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ def _plot(self, split_gen, scales, orient):
106106
linestyles=data["edgestyle"],
107107
transOffset=ax.transData,
108108
transform=mpl.transforms.IdentityTransform(),
109+
**self.artist_kws,
109110
)
110111
ax.add_collection(points)
111112

@@ -124,6 +125,7 @@ def _legend_artist(
124125
linewidths=[res["linewidth"]],
125126
linestyles=[res["edgestyle"]],
126127
transform=mpl.transforms.IdentityTransform(),
128+
**self.artist_kws,
127129
)
128130

129131

0 commit comments

Comments
 (0)