public function PHPExcel_Chart_Layout::setShowPercent in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Layout.php \PHPExcel_Chart_Layout::setShowPercent()
* Set show percentage * Specifies that the percentage should be shown in data labels. * *
Parameters
boolean $value Show percentage:
Return value
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Chart/ Layout.php, line 398
Class
- PHPExcel_Chart_Layout
- PHPExcel_Chart_Layout
Code
public function setShowPercent($value) {
$this->_showPercent = $value;
return $this;
}