From 55aa2f383d78597c13c9dc87d7b48258576d8f0f Mon Sep 17 00:00:00 2001 From: Mihai Anton Date: Fri, 26 Feb 2021 11:28:17 +0200 Subject: [PATCH] Changes linestyle parameter of flierprops linestyle='none' has no effect in removing the marker edges, thus is was changed to markeredgecolor='none' to achieve this outcome. --- examples/statistics/boxplot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/statistics/boxplot.py b/examples/statistics/boxplot.py index 3171e7575ec4..9c5d7dd29186 100644 --- a/examples/statistics/boxplot.py +++ b/examples/statistics/boxplot.py @@ -61,7 +61,7 @@ boxprops = dict(linestyle='--', linewidth=3, color='darkgoldenrod') flierprops = dict(marker='o', markerfacecolor='green', markersize=12, - linestyle='none') + markeredgecolor='none') medianprops = dict(linestyle='-.', linewidth=2.5, color='firebrick') meanpointprops = dict(marker='D', markeredgecolor='black', markerfacecolor='firebrick')