繁体   English   中英

如何在python-pptx中更改/添加图表数据系列?

[英]How to change/add chart data series in python-pptx?

我正在尝试使用python-pptx在现有图表中设置数据。

from pptx import Presentation
pres_path = "C:\\pres.pptx"
pres = Presentation(pres_path)

pres.slides[3].shapes[4].chart.series[0].values

(92.0、330.0、309.0、313.0、356.0、421.0、457.0)

pres.slides[3].shapes[4].chart.series[0].values = (1,2,3)

Traceback (most recent call last):
  File "<input>", line 1, in <module>
  AttributeError: can't set attribute

文档中提到了一种看似相关的方法,但我不明白如何使用它: http : //python-pptx.readthedocs.org/en/latest/_modules/pptx/chart/data.html

pres.slides[3].shapes[4].chart.replace_data((1,2,3))


Traceback (most recent call last):
  File "<input>", line 1, in <module>
  File "C:\Python27\lib\site-packages\pptx\chart\chart.py", line 119, in     replace_data
    _SeriesRewriter.replace_series_data(self._chartSpace, chart_data)
  File "C:\Python27\lib\site-packages\pptx\chart\chart.py", line 197, in replace_series_data
sers = cls._adjust_ser_count(chartSpace, len(chart_data.series))
AttributeError: 'tuple' object has no attribute 'series'

谢谢您能提供的任何帮助。 谢谢!

要将新系列添加到图表后面的现有表中,您需要做以下三件事:

  1. 创建ChartData()的实例
  2. 提供类别名称
  3. 使用“ add_series()”功能将新系列添加到ChartData()对象。

     chart_data = ChartData() chart_data.categories = 'category_name' for col_idx, col in enumerate(single_df.columns): chart_data.add_series(col, (single_df.ix[:, col_idx].values)) shp.chart.replace_data(chart_data) 

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM