You are here

public function PHPExcel_Chart_Legend::setOverlay in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Legend.php \PHPExcel_Chart_Legend::setOverlay()

* Set allow overlay of other elements? * *

Parameters

boolean $overlay: * @return boolean

1 call to PHPExcel_Chart_Legend::setOverlay()
PHPExcel_Chart_Legend::__construct in vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Legend.php
* Create a new PHPExcel_Chart_Legend

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Legend.php, line 153

Class

PHPExcel_Chart_Legend
PHPExcel_Chart_Legend

Code

public function setOverlay($overlay = FALSE) {
  if (!is_bool($overlay)) {
    return false;
  }
  $this->_overlay = $overlay;
  return true;
}