diff --git a/seaborn/_marks/scatter.py b/seaborn/_marks/scatter.py index b1a11e13b6..2579113a3e 100644 --- a/seaborn/_marks/scatter.py +++ b/seaborn/_marks/scatter.py @@ -106,6 +106,7 @@ def _plot(self, split_gen, scales, orient): linestyles=data["edgestyle"], transOffset=ax.transData, transform=mpl.transforms.IdentityTransform(), + **self.artist_kws, ) ax.add_collection(points) @@ -124,6 +125,7 @@ def _legend_artist( linewidths=[res["linewidth"]], linestyles=[res["edgestyle"]], transform=mpl.transforms.IdentityTransform(), + **self.artist_kws, )