public function PHPExcel_Reader_Abstract::getIncludeCharts 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::getIncludeCharts()
* Read charts in workbook? * If this is true, then the Reader will 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. * If false (the default) it will ignore any charts defined in the workbook file. * *
Return value
boolean
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Reader/ Abstract.php, line 106
Class
- PHPExcel_Reader_Abstract
- PHPExcel_Reader_Abstract
Code
public function getIncludeCharts() {
return $this->_includeCharts;
}