You are here

public function PHPExcel_Chart::getTopLeftPosition 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::getTopLeftPosition()

* Get the top left position of the chart * *

Return value

array an associative array containing the cell address, X-Offset and Y-Offset from the top left of that cell

File

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

Class

PHPExcel_Chart
PHPExcel_Chart

Code

public function getTopLeftPosition() {
  return array(
    'cell' => $this->_topLeftCellRef,
    'xOffset' => $this->_topLeftXOffset,
    'yOffset' => $this->_topLeftYOffset,
  );
}