如何在xlsxwriter中设置图表中的背景颜色

时间:2013-12-12 13:09:32

标签: python xlsxwriter

自我解释的问题。 Here是我正在关注的链接。

由于

2 个答案:

答案 0 :(得分:2)

chart.set_chartarea()或chart.set_plotarea()是什么?

请参阅以下链接:

此致

答案 1 :(得分:2)

要更改绘图区域和图表区域的背景颜色,需要使用适当的颜色调用图表对象上的'set_plotarea()and set_chartarea()`。

要填充条形图的背景颜色,在图表对象上添加系列时,键值应为'fill':{'color':'yellow'}

例如:

chart.add_series({'values': '=Sheet1!$C$1:$C$5','fill':{'color': 'yellow'}})