如何使用 PHPPowerpoint/PHPPresentation 自定义折线图中的折线?

How do I customize the line in a line chart with PHPPowerpoint/PHPPresentation?

如何在 PHPPowerpoint/PHPPresentation 上自定义折线图中的线条?我在文档或样本中找不到任何东西来解决这个问题。

这是我的代码:

$seriesData = array(
    'Monday' => 12,
    'Tuesday' => 15,
    'Wednesday' => 13,
    'Thursday' => 17,
    'Friday' => 14,
    'Saturday' => 9,
    'Sunday' => 7
);

$lineChart = new Line();
$series = new Series('Downloads', $seriesData);
$series->setShowSeriesName(false);
$series->setShowValue(false);
$series->setShowLeaderLines(false);

$lineChart->addSeries($series);

$shape = $currentSlide->createChartShape();
$shape->setResizeProportional(false)->setHeight(convertIn2Px(2.28))->setWidth(convertIn2Px(5.09))->setOffsetX(convertIn2Px(4.75))->setOffsetY(convertIn2Px(3.9));
$shape->getTitle()->setVisible(false);
$shape->getPlotArea()->setType($lineChart);
$shape->getPlotArea()->getAxisY()->setFormatCode('#,##0');
$shape->getLegend()->setVisible(false);

折线图的颜色为蓝色,但我希望能够更改该颜色。它还显示方形标记,但我想这样做,以便线上没有标记。

先谢谢你。

它实际上在 develop branch

但是你可以这样做:

$oOutline = new \PhpOffice\PhpPresentation\Style\Outline();
$oOutline->getFill()->setFillType(Fill::FILL_SOLID);
$oOutline->getFill()->setStartColor(new Color(Color::COLOR_YELLOW));
$oOutline->setWidth(2);

$series->setOutline($oOutline);