Open
Description
Hello,
I'm trying to create a 2D Pie chart, by following this example: 33_Chart_create_pie.php
Basically the generated chart is a 3D Pie:

I've done a bit of reverse engineering and found the <c:view3d>
tag in the generated XML, which leaded me to this line:
phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Chart.php:83
if ($series->getPlotType() === DataSeries::TYPE_SURFACECHART) {
$surface2D = true;
break;
}
So I did a quick test by changing the if condition to the following:
if ($series->getPlotType() === DataSeries::TYPE_SURFACECHART || $series->getPlotType() === DataSeries::TYPE_PIECHART) {
$surface2D = true;
break;
}
And the result now looks right:
Unfortunately I can't send a PR as I don't know the codebase enough to know if this will break something else.
Cheers
Metadata
Metadata
Assignees
Labels
No labels