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 90fef2c commit 52b2175Copy full SHA for 52b2175
src/PhpWord/Style/Chart.php
@@ -331,6 +331,7 @@ public function setDataLabelOptions($values = array())
331
$this->dataLabelOptions[$option] = $this->setBoolVal($values[$option], $this->dataLabelOptions[$option]);
332
}
333
334
+ return $this;
335
336
337
/*
@@ -378,7 +379,7 @@ public function getCategoryLabelPosition()
378
379
*/
380
public function setCategoryLabelPosition($labelPosition)
381
{
- $enum = array('nextTo', 'low', 'high');
382
+ $enum = array('none', 'nextTo', 'low', 'high');
383
$this->categoryLabelPosition = $this->setEnumVal($labelPosition, $enum, $this->categoryLabelPosition);
384
385
return $this;
0 commit comments