You are here

public function PHPExcel_Chart::getMinorGridlines in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart.php \PHPExcel_Chart::getMinorGridlines()

Get Minor Gridlines

Return value

PHPExcel_Chart_GridLines

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart.php, line 405

Class

PHPExcel_Chart
PHPExcel_Chart

Code

public function getMinorGridlines() {
  if ($this->_minorGridlines !== NULL) {
    return $this->_minorGridlines;
  }
  return new PHPExcel_Chart_GridLines();
}