laravel phpexcel 图表修改

 
X 轴 大/小刻度 单位
$axis ->setAxisOptionsProperties( 'nextTo' , null , null , null , null , null , null , null , 0.1 , 0.04 );  最后两个参数为 大刻度,小刻度 
 
图表网格线:
phpexcel/Classes/PHPExcel/Chart/GridLines.php
$_line_properties = array (
'color' => array (
'type' => self :: EXCEL_COLOR_TYPE_STANDARD ,
'value' => 'white' , // 网格线变白
'alpha' => 0
),
 
private
$_object_state = FALSE ,  // 主要网格线
 
 
private function _activateObject() {
$this -> _object_state = true ;  // 次要网格线

你可能感兴趣的:(phpexcel)