From 4cc6c7cf80138738c04cd15f345b9247b773bca4 Mon Sep 17 00:00:00 2001 From: Jody Klymak Date: Fri, 26 Feb 2021 12:57:20 -0800 Subject: [PATCH] Backport PR #19589: Changes linestyle parameter of flierprops --- 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')