我正在使用以下代码创建一个包含PHP Powerpoint库的图表。
$currentSlide = createTemplatedSlide($objPHPPowerPoint);
$seriesData = array('ABC'=>97,'BCD'=>97,'CDE'=>97,'DEF'=>97,'EFG'=>97,'FGH'=>97);
$lineChart = new PHPPowerPoint_Shape_Chart_Type_Line();
$series = new PHPPowerPoint_Shape_Chart_Series('Benchmark', $seriesData);
$series->setShowSeriesName(false);
$lineChart->addSeries($series);
$shape = $currentSlide->createChartShape();
$shape->setName('Benchmark')
->setResizeProportional(false)
->setHeight(480)
->setWidth(940)
->setOffsetX(10)
->setOffsetY(100);
$shape->getShadow()->setVisible(false)
$shape->getFill()->setFillType(PHPPowerPoint_Style_Fill::FILL_GRADIENT_LINEAR)
->setStartColor(new PHPPowerPoint_Style_Color('ddd9c3'))
->setEndColor(new PHPPowerPoint_Style_Color('ddd9c3'))
->setRotation(270);
$shape->getBorder()->setLineStyle(PHPPowerPoint_Style_Border::LINE_SINGLE);
$shape->getTitle()->setText('');
$shape->getTitle()->getFont()->setItalic(true);
$shape->getPlotArea()->setType($lineChart);
$shape->getView3D()->setRotationX(30);
$shape->getView3D()->setPerspective(30);
图表按预期出现(截图附件),但我想自定义3件事:
答案 0 :(得分:1)
我在网上找到了这个图书馆的2个版本。一个位于github,另一个位于codeplex。 Github上的那个肯定看起来更新,但是缺少任何类型的文档。 Codeplex已过时,但实际上有代码示例。
tl; dr - 否(无论如何我的测试中),否和否。
长版
通过浏览代码并查看它创建的XML,我注意到了一些事情:
生成的XML(解压缩生成的.pptx文件后的图表/ chart1.xml):
<c:valAx>
<c:axId val="52749440"/>
<c:scaling>
<c:orientation val="minMax"/>
</c:scaling>
<c:axPos val="l"/>
<c:numFmt formatCode="" sourceLinked="0"/>
<c:majorTickMark val="none"/>
<c:tickLblPos val="nextTo"/>
<c:txPr>
<a:bodyPr/>
<a:lstStyle/>
<a:p>
<a:pPr>
<a:defRPr/>
</a:pPr>
<a:r>
<a:rPr lang="en-US" dirty="0"/>
<a:t>Y Axis!</a:t>
</a:r>
<a:endParaRPr lang="en-US" dirty="0"/>
</a:p>
</c:txPr>
<c:crossAx val="52743552"/>
<c:crosses val="autoZero"/>
<c:crossBetween val="between"/>
</c:valAx>
我通过添加以下行来设置Axis标签:
$shape->getPlotArea()->getAxisX()->setTitle('X Axis!');
$shape->getPlotArea()->getAxisY()->setTitle('Y Axis!');
在剧本中的这一行之后:
$shape->getPlotArea()->setType($lineChart);
可用的最后一个Powerpoint编写器类是2007年,它们已经过时了。可能需要更新XML结构并添加一些其他功能。我将看一下有关OOXML格式的一些文档,看看在不重写编写器类的情况下添加这些文档是多么容易。