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;  // 次要网格线
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章