You are here

public function PHPExcel_Chart_GridLines::setLineColorProperties in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/GridLines.php \PHPExcel_Chart_GridLines::setLineColorProperties()

Set Line Color Properties

Parameters

string $value:

int $alpha:

string $type:

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/GridLines.php, line 110

Class

PHPExcel_Chart_GridLines
Created by PhpStorm. User: Wiktor Trzonkowski Date: 7/2/14 Time: 2:36 PM

Code

public function setLineColorProperties($value, $alpha = 0, $type = self::EXCEL_COLOR_TYPE_STANDARD) {
  $this
    ->_activateObject()->_line_properties['color'] = $this
    ->setColorProperties($value, $alpha, $type);
}