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.
2 parents fa52c92 + 0692a55 commit ab7d822Copy full SHA for ab7d822
src/PhpWord/Writer/Word2007/Part/Chart.php
@@ -188,7 +188,10 @@ private function writePlotArea(XMLWriter $xmlWriter)
188
// Series
189
$this->writeSeries($xmlWriter, isset($this->options['scatter']));
190
191
- $xmlWriter->writeElementBlock('c:overlap', 'val', '100');
+ // don't overlap if grouping is 'clustered'
192
+ if (!isset($this->options['grouping']) || $this->options['grouping'] != 'clustered') {
193
+ $xmlWriter->writeElementBlock('c:overlap', 'val', '100');
194
+ }
195
196
// Axes
197
if (isset($this->options['axes'])) {
0 commit comments