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