如何更改candlestick_ohlc的灯芯/阴影颜色

时间:2017-03-10 21:08:16

标签: python matplotlib

是否有设置烛台灯芯/阴影/边框颜色的属性?

我设置了' colordown'变黑。问题是情节的背景颜色也是黑色。结果,下杆混合到背景中。

如果我能以某种方式改变烛台的边框颜色,我可以得到我想要的预期结果。我可以设置一个属性吗?

fig, ax = plt.subplots()
ax.xaxis_date()
ax.set_axis_bgcolor('k')
candlestick_ohlc(ax, tuples, width=.6, colorup='w', colordown='k')
plt.show()

enter image description here

0 个答案:

没有答案