如何使用openpyxls将数据表添加到图表空间?

时间:2017-05-23 19:06:47

标签: python excel openpyxl

openpyxl中有一个openpyxl.chart.chartspace.DataTable类,但没有示例。当我尝试使用它时,我得到:

AttributeError: 'BarChart' object has no attribute 'DataTable' 

或者我没有使用以下代码获取图表空间中的数据表:

from openpyxl.chart.chartspace import DataTable

chart1 = BarChart()
chart1.DataTable = DataTable(showHorzBorder=None , showVertBorder=None,showOutline=None, showKeys=None, spPr=None,txPr=None, extLst=None)

1 个答案:

答案 0 :(得分:1)

也许为时已晚..这对我有用

from openpyxl.chart.plotarea import DataTable

chart1 = BarChart()
chart1.plot_area.dTable = DataTable()
chart1.plot_area.dTable.showHorzBorder = True
chart1.plot_area.dTable.showVertBorder = True
chart1.plot_area.dTable.showOutline = True
chart1.plot_area.dTable.showKeys = True