2

我正在尝试为使用python-pptx库创建的 powerpoint 图表添加标题。我在 OSX 上使用 Python 2.7 和 Python pptx 版本 0.6.1。

创建图表的代码如下:

df = pd.read_excel("/Users/vagabond/Documents/python_pptx_3/Bar_Charts.xlsx", sheetname=None)
f = open('/Users/vagabond/Documents/python_pptx_3/Presentation1.pptx')
prs = ppt.Presentation(f)

for sheetname, data in df.iteritems():

    slide_layout = prs.slide_layouts[9]
    slide = prs.slides.add_slide(slide_layout)

    chart_data = ppt.chart.data.XyChartData()

    series_1 = chart_data.add_series('Series 1')

    ## iterate through rows of the data frame for desired columns and add data points
    for index, row in data.iterrows():
        series_1.add_data_point(row['Share_of_apples'], row['Share_of_oranges'])

    ## define co-ordinates on the slide
    x, y, cx, cy = Inches(1), Inches(3), Inches(7), Inches(4)

    chart = slide.shapes.add_chart(
    XL_CHART_TYPE.XY_SCATTER, x, y, cx, cy, chart_data
).chart

    prs.save('scatter_charts.pptx')

现在要添加标题,我在slide.shapes.add_chart通话后添加了以下内容:

chart.has_title = True
chart.title = sheetname

如果您想知道,其中的值 sheetnamechart.title = sheetname是我在第一行中读到的 dict df 的 dict 键。对于每个 chart ,我希望分配字典中键值对的键。程序运行没有任何错误。

问题是,它没有添加任何图表标题。

我检查了 chart.chart_title 是否包含任何值,它给了我一个错误:

---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-26-7cb6c1e79da2> in <module>()
      1 chart.has_title = True
      2 
----> 3 chart.chart_title.has_text_frame = True

AttributeError: 'Chart' object has no attribute 'chart_title'
4

1 回答 1

3

更新Chart.chart_titleChart.has_title已添加到python-pptx问题的原始答案:https ://python-pptx.readthedocs.io/en/latest/api/chart.html#pptx.chart.chart.Chart.chart_title


python-pptx还没有对图表标题的 API 支持。

您的分配Chart.has_title没有出错的原因是 Python 在第一次分配时添加了该属性(因为它是一种动态语言)。API 中没有该属性。

于 2016-11-28T20:20:29.387 回答