Skip to content

Commit a0c9ace

Browse files
add edgecolors and linewidths to _mscatter()
1 parent 0c6b683 commit a0c9ace

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mplfinance/plotting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,7 @@ def _addplot_columns(panid,panels,ydata,apdict,xdates,config):
919919
linewidths = apdict['linewidths']
920920

921921
if isinstance(mark,(list,tuple,np.ndarray)):
922-
_mscatter(xdates,ydata,ax=ax,m=mark,s=size,color=color,alpha=alpha)
922+
_mscatter(xdates, ydata, ax=ax, m=mark, s=size, color=color, alpha=alpha, edgecolors=edgecolors, linewidths=linewidths)
923923
else:
924924
ax.scatter(xdates, ydata, s=size, marker=mark, color=color, alpha=alpha, edgecolors=edgecolors, linewidths=linewidths)
925925
elif aptype == 'bar':

0 commit comments

Comments
 (0)