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)
答案 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