Skip to content

Can't format value of Pie chart pptx (0.7.0) #212

@Napryc

Description

@Napryc

Hi,

formatting values in pie chart is not working. Doing a modification in the function writeTypePie of PptCharts.php file solved it for me.

After line 1383
$objWriter->startElement('c:dLbls');
I've added the following code:

if ($series->hasDlblNumFormat()) {
   $objWriter->startElement('c:numFmt');
   $objWriter->writeAttribute('formatCode', $series->getDlblNumFormat());
   $objWriter->writeAttribute('sourceLinked', '0');
   $objWriter->endElement();
}

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions