Skip to content

Commit

Permalink
Pass artist_kws to scatter artist
Browse files Browse the repository at this point in the history
  • Loading branch information
mwaskom committed Jul 25, 2022
1 parent 34662f4 commit e44dbf0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions seaborn/_marks/scatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -124,6 +125,7 @@ def _legend_artist(
linewidths=[res["linewidth"]],
linestyles=[res["edgestyle"]],
transform=mpl.transforms.IdentityTransform(),
**self.artist_kws,
)


Expand Down

0 comments on commit e44dbf0

Please sign in to comment.