We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a30bbbd commit afed126Copy full SHA for afed126
src/PhpWord/Writer/Word2007/Part/Chart.php
@@ -188,7 +188,9 @@ private function writePlotArea(XMLWriter $xmlWriter)
188
// Series
189
$this->writeSeries($xmlWriter, isset($this->options['scatter']));
190
191
- $xmlWriter->writeElementBlock('c:overlap', 'val', '100');
+ if(!isset($this->options['grouping']) OR $this->options['grouping'] != 'clustered'){
192
+ $xmlWriter->writeElementBlock('c:overlap', 'val', '100');
193
+ }
194
195
// Axes
196
if (isset($this->options['axes'])) {
0 commit comments