我尝试在我制作的图表中添加页脚和标题,但是当我检查打印设置时它不在那里。弹出也没有错误。
from openpyxl import Workbook
from openpyxl.chart import ScatterChart, Reference, Series
wb = Workbook()
cs = wb.create_chartsheet()
cs.oddHeader.text = "Header"
cs.oddFooter.text = "Footer"
wb.save("test.xlsx")
答案 0 :(得分:0)
后来我发现openpyxl不支持此功能,至少在我使用此功能时,所以我将其替换为xlsxwriter。