Skip to content

Pie chart (2D) created as 3D #4425

Open
@funder7

Description

@funder7

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:

Pie rendered as 3D

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:
Pie wordking 2D

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions