You are here

public function PHPExcel_Chart_Axis::setSoftEdges in Loft Data Grids 6.2

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

Set Soft Edges Size

Parameters

float $size:

File

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

Class

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

Code

public function setSoftEdges($size) {
  if (!is_null($size)) {
    $_soft_edges['size'] = (string) $this
      ->getExcelPointsWidth($size);
  }
}