Skip to content

Commit 2b9fced

Browse files
committed
Merge pull request #2207 from profholzer/patch-1
color of candlestick lines
2 parents 4d244bb + c5ccfbf commit 2b9fced

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/finance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1007,7 +1007,7 @@ def _candlestick(ax, quotes, width=0.2, colorup='k', colordown='r',
10071007

10081008
vline = Line2D(
10091009
xdata=(t, t), ydata=(low, high),
1010-
color='k',
1010+
color=color,
10111011
linewidth=0.5,
10121012
antialiased=True,
10131013
)

0 commit comments

Comments
 (0)