You are here

public function PHPExcel_Writer_Abstract::setIncludeCharts in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Abstract.php \PHPExcel_Writer_Abstract::setIncludeCharts()

* Set write charts in workbook * Set to true, to advise the Writer to include any charts that exist in the PHPExcel object. * Set to false (the default) to ignore charts. * *

Parameters

boolean $pValue: * @return PHPExcel_Writer_IWriter

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Abstract.php, line 88

Class

PHPExcel_Writer_Abstract
PHPExcel_Writer_Abstract

Code

public function setIncludeCharts($pValue = FALSE) {
  $this->_includeCharts = (bool) $pValue;
  return $this;
}