You are here

public function PHPExcel_Chart_DataSeries::setSmoothLine in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/DataSeries.php \PHPExcel_Chart_DataSeries::setSmoothLine()

* Set Smooth Line * *

Parameters

boolean $smoothLine:

Return value

PHPExcel_Chart_DataSeries

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/DataSeries.php, line 350

Class

PHPExcel_Chart_DataSeries
PHPExcel_Chart_DataSeries

Code

public function setSmoothLine($smoothLine = TRUE) {
  $this->_smoothLine = $smoothLine;
  return $this;
}