python-pptx:更改饼图的边框宽度

时间:2019-03-04 15:01:41

标签: python-pptx

是否可以在python-pptx中设置/编辑饼图的边框宽度?

enter image description here

我想像这样的东西可以解决问题吗?

    for idx, point in enumerate(chart.series[0].points):
        point.format.width = Pt(7.25)

1 个答案:

答案 0 :(得分:1)

python-pptx API尚不支持此功能,但是可以通过采用以下解决方法来实现此功能:

from pptx.dml.color import RGBColor
from pptx.dml.line import LineFormat
from pptx.oxml import parse_xml
from pptx.oxml.ns import nsdecls
from pptx.util import Pt

plotArea = chart._chartSpace.plotArea
# ---get-or-add spPr---
spPrs = plotArea.xpath("c:spPr")
if len(spPrs) > 0:
    spPr = spPrs[0]
else:
    # ---add spPr---
    spPr_xml = (
        "<c:spPr %s %s>\n"
        "  <a:noFill/>\n"
        "  <a:ln>\n"
        "    <a:solidFill>\n"
        "      <a:srgbClr val=\"DEDEDE\"/>\n"
        "    </a:solidFill>\n"
        "  </a:ln>\n"
        "  <a:effectLst/>\n"
        "</c:spPr>\n" % (nsdecls("c"), nsdecls("a"))
    )
    spPr = parse_xml(spPr_xml)
    plotArea.insert_element_before(spPr, "c:extLst")

line = LineFormat(spPr)
line.color.rgb = RGBColor.from_text("DEDEDE")
line.width = Pt(2)

以这种方式形成的LineFormat对象具有此处描述的所有方法和属性:
https://python-pptx.readthedocs.io/en/latest/api/dml.html#lineformat-objects

将大部分代码提取到方法chart_border(chart)中,该方法将返回图表的LineFormat对象,然后您可以按照通常的方式对其进行操作。