Minor fix to chart layout

This commit is contained in:
Mark Baker 2013-12-23 08:13:12 +00:00
parent fcb794e2e2
commit 56eae54a4b
1 changed files with 2 additions and 2 deletions

View File

@ -196,7 +196,7 @@ class PHPExcel_Chart_Layout
* @return string * @return string
*/ */
public function getYMode() { public function getYMode() {
return $this->_xMode; return $this->_yMode;
} }
/** /**
@ -205,7 +205,7 @@ class PHPExcel_Chart_Layout
* @param Y-Mode $value * @param Y-Mode $value
*/ */
public function setYMode($value) { public function setYMode($value) {
$this->_xMode = $value; $this->_yMode = $value;
} }
/** /**