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