Skip to content

Commit 23d825c

Browse files
committed
BUG:Fix Min/max markers on box plot are not visible with 'dark_background' theme pandas-dev#40769
1 parent ce34c1c commit 23d825c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/plotting/_matplotlib/boxplot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def _validate_color_args(self):
101101
self._boxes_c = colors[0]
102102
self._whiskers_c = colors[0]
103103
self._medians_c = colors[2]
104-
self._caps_c = "k" # mpl default
104+
self._caps_c = colors[0]
105105

106106
def _get_colors(self, num_colors=None, color_kwds="color"):
107107
pass

0 commit comments

Comments
 (0)