You are here

public function PHPExcel_Chart_DataSeriesValues::setDataSource 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::setDataSource()

* Set Series Data Source (formula) * *

Parameters

string $dataSource: * @return PHPExcel_Chart_DataSeriesValues

File

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

Class

PHPExcel_Chart_DataSeriesValues
PHPExcel_Chart_DataSeriesValues

Code

public function setDataSource($dataSource = null, $refreshDataValues = true) {
  $this->_dataSource = $dataSource;
  if ($refreshDataValues) {

    //	TO DO
  }
  return $this;
}