public function PHPExcel_Chart::setBottomRightPosition in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart.php \PHPExcel_Chart::setBottomRightPosition()
* Set the Bottom Right position of the chart * *
Parameters
string $cell: * @param integer $xOffset * @param integer $yOffset * @return PHPExcel_Chart
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Chart.php, line 520
Class
- PHPExcel_Chart
- PHPExcel_Chart
Code
public function setBottomRightPosition($cell, $xOffset = null, $yOffset = null) {
$this->_bottomRightCellRef = $cell;
if (!is_null($xOffset)) {
$this
->setBottomRightXOffset($xOffset);
}
if (!is_null($yOffset)) {
$this
->setBottomRightYOffset($yOffset);
}
return $this;
}