python xlwings chart模块各种问题今天都遇到了
问题1、增加图表,按网上搜索的设置图表标题一直报错(pywintypes.com_error: (-2147352567, “发生意外。”, (0, “S”, “该对象无标题。”, None, 0, -2147024809), None))
问题2、标签问题位置调整,标签默认在图表右侧
问题3、遇到具体问题的处理方法,比如:msoElementChartTitleAboveChart 双面 在图表上方显示标题。这个参数的枚举值显示为双面,要换成具体的int型数字的方法。
下面列举具体的问题原因及解决方法:
1 # generate chat 2 chart = sht.charts.add(500, 10) 3 chart.set_source_data(sht.range("B7:E8")) 4 chart.chart_type = "pie_exploded" 5 chart.api[1].ChartTitle.Text = "TestReport" # change the title name