You are here

public function PHPExcel_Chart_Axis::setLineParameters in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Axis.php \PHPExcel_Chart_Axis::setLineParameters()

Set Line Property

Parameters

string $color:

int $alpha:

string $type:

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Axis.php, line 254

Class

PHPExcel_Chart_Axis
Created by PhpStorm. User: Wiktor Trzonkowski Date: 6/17/14 Time: 12:11 PM

Code

public function setLineParameters($color, $alpha = 0, $type = self::EXCEL_COLOR_TYPE_ARGB) {
  $this->_line_properties = $this
    ->setColorProperties($color, $alpha, $type);
}