You are here

public function PHPExcel_Chart_Legend::__construct in Loft Data Grids 7.2

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

* Create a new PHPExcel_Chart_Legend

File

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

Class

PHPExcel_Chart_Legend
PHPExcel_Chart_Legend

Code

public function __construct($position = self::POSITION_RIGHT, PHPExcel_Chart_Layout $layout = NULL, $overlay = FALSE) {
  $this
    ->setPosition($position);
  $this->_layout = $layout;
  $this
    ->setOverlay($overlay);
}