public function PHPExcel_Chart::getMajorGridlines in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart.php \PHPExcel_Chart::getMajorGridlines()
Get Major Gridlines
Return value
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Chart.php, line 392
Class
- PHPExcel_Chart
- PHPExcel_Chart
Code
public function getMajorGridlines() {
if ($this->_majorGridlines !== NULL) {
return $this->_majorGridlines;
}
return new PHPExcel_Chart_GridLines();
}