Merge pull request #527 from TouPye/develop

Set default plotDirection
This commit is contained in:
Mark Baker 2015-03-09 23:46:36 +00:00
commit 43595b7c15
1 changed files with 6 additions and 1 deletions

View File

@ -137,7 +137,7 @@ class PHPExcel_Chart_DataSeries
/**
* Create a new PHPExcel_Chart_DataSeries
*/
public function __construct($plotType = null, $plotGrouping = null, $plotOrder = array(), $plotLabel = array(), $plotCategory = array(), $plotValues = array(), $smoothLine = null, $plotStyle = null)
public function __construct($plotType = null, $plotGrouping = null, $plotOrder = array(), $plotLabel = array(), $plotCategory = array(), $plotValues = array(), $plotDirection = null, $smoothLine = null, $plotStyle = null)
{
$this->_plotType = $plotType;
$this->_plotGrouping = $plotGrouping;
@ -155,6 +155,11 @@ class PHPExcel_Chart_DataSeries
$this->_plotCategory = $plotCategory;
$this->_smoothLine = $smoothLine;
$this->_plotStyle = $plotStyle;
if (is_null($plotDirection)) {
$plotDirection = self::DIRECTION_COL;
}
$this->_plotDirection = $plotDirection;
}
/**