public function PHPExcel_Chart_Layout::setShowLeaderLines 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::setShowLeaderLines()
* Set show leader lines * Specifies that leader lines should be shown in data labels. * *
Parameters
boolean $value Show leader lines:
Return value
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Chart/ Layout.php, line 440
Class
- PHPExcel_Chart_Layout
- PHPExcel_Chart_Layout
Code
public function setShowLeaderLines($value) {
$this->_showLeaderLines = $value;
return $this;
}