如何在通过Openpyxl创建的图表中显示数据标签

时间:2015-12-07 18:00:58

标签: charts labels openpyxl

我使用openpyxl使用以下代码创建图表。 默认情况下,它不会显示数据标签 - 所以我必须右键单击图表并选择“添加数据标签”#34;手动。如何使用Openpyxl命令执行此操作? 提前谢谢!

data = Reference(ws, min_col=2, min_row=1, max_col=6, max_row=10)
titles = Reference(ws, min_col=1, min_row=2, max_row=10)
chart = BarChart3D()
chart.add_data(data=data, titles_from_data=True)
chart.set_categories(titles)
ws.add_chart(chart, "C10")

2 个答案:

答案 0 :(得分:3)

这对我来说在折线图上(作为组合图表): openpyxls版本:2.3.2:

from openpyxl.chart.label import DataLabelList
chart2 = LineChart()
.... code to build chart like add_data()
and: # Style the lines
s1 = chart2.series[0]
s1.marker.symbol = "diamond"
... your data labels added here:
chart2.dataLabels = DataLabelList() 
chart2.dataLabels.showVal = True

希望这有助于某人

答案 1 :(得分:0)

数据标签按图表,每个系列或甚至系列中的每个项目设置。目前,您必须查看来源并了解其工作原理,但Select I.*, B.First_Name, B.Last_Name From Borrows W Join Items I On W.item_id = I.Id Left Join Borrowers B On W.borrower_id = B.id And W.return_date Is Null chart.dataLabels是您的起点。