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 afed126 commit 0692a55Copy full SHA for 0692a55
src/PhpWord/Writer/Word2007/Part/Chart.php
@@ -188,7 +188,8 @@ private function writePlotArea(XMLWriter $xmlWriter)
188
// Series
189
$this->writeSeries($xmlWriter, isset($this->options['scatter']));
190
191
- if(!isset($this->options['grouping']) OR $this->options['grouping'] != 'clustered'){
+ // 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
0 commit comments