It could be nice if we had the option to have filled boxplot with edgecolor and facecolor the same as hue color (or just color if there is no category)
boxprops = {
"facecolor": maincolor, "edgecolor": maincolor, **props["box"]
}
medianprops = {"color": maincolor, **props["median"]}
whiskerprops = {"color": maincolor, **props["whisker"]}
flierprops = {"markeredgecolor": maincolor, **props["flier"]}
capprops = {"color": maincolor, **props["cap"]}
It could be nice if we had the option to have filled boxplot with edgecolor and facecolor the same as hue color (or just color if there is no category)
seaborn/seaborn/categorical.py
Lines 1597 to 1603 in 32088bb
seaborn/seaborn/categorical.py
Lines 662 to 675 in 32088bb
It could look like