You are here

public function PHPExcel_Chart_DataSeriesValues::__construct in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/DataSeriesValues.php \PHPExcel_Chart_DataSeriesValues::__construct()

* Create a new PHPExcel_Chart_DataSeriesValues object

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/DataSeriesValues.php, line 92

Class

PHPExcel_Chart_DataSeriesValues
PHPExcel_Chart_DataSeriesValues

Code

public function __construct($dataType = self::DATASERIES_TYPE_NUMBER, $dataSource = null, $formatCode = null, $pointCount = 0, $dataValues = array(), $marker = null) {
  $this
    ->setDataType($dataType);
  $this->_dataSource = $dataSource;
  $this->_formatCode = $formatCode;
  $this->_pointCount = $pointCount;
  $this->_dataValues = $dataValues;
  $this->_marker = $marker;
}