This commit is contained in:
dfsd534 2021-04-10 11:49:32 +08:00
parent a30bbbdc62
commit afed126ab1
1 changed files with 3 additions and 1 deletions

View File

@ -188,7 +188,9 @@ class Chart extends AbstractPart
// Series // Series
$this->writeSeries($xmlWriter, isset($this->options['scatter'])); $this->writeSeries($xmlWriter, isset($this->options['scatter']));
$xmlWriter->writeElementBlock('c:overlap', 'val', '100'); if(!isset($this->options['grouping']) OR $this->options['grouping'] != 'clustered'){
$xmlWriter->writeElementBlock('c:overlap', 'val', '100');
}
// Axes // Axes
if (isset($this->options['axes'])) { if (isset($this->options['axes'])) {