public function PHPExcel_Reader_Abstract::setIncludeCharts in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Abstract.php \PHPExcel_Reader_Abstract::setIncludeCharts()
* Set read charts in workbook * Set to true, to advise the Reader to include any charts that exist in the workbook. * Note that a ReadDataOnly value of false overrides, and charts won't be read regardless of the IncludeCharts value. * Set to false (the default) to discard charts. * *
Parameters
boolean $pValue: * * @return PHPExcel_Reader_IReader
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Reader/ Abstract.php, line 120
Class
- PHPExcel_Reader_Abstract
- PHPExcel_Reader_Abstract
Code
public function setIncludeCharts($pValue = FALSE) {
$this->_includeCharts = (bool) $pValue;
return $this;
}