PHPExcel饼图系列选项在主轴上为25%

时间:2017-04-25 19:54:20

标签: php phpexcel pie-chart options

我能够以编程方式创建2个饼图(即时使用PHP),使用PHPExcel库(不需要列出代码,因为它太大了)但我找不到增加距离的方法馅饼的碎片如下图所示。基本上,我试图以编程方式将主轴上的系列选项增加25%。enter image description here

2 个答案:

答案 0 :(得分:3)

当您初始化 PHPExcel_Chart_DataSeries 对象时,您可以指定 $ plotStyle = true

public function __construct($plotType = null, $plotGrouping = null, $plotOrder = array(), $plotLabel = array(), $plotCategory = array(), $plotValues = array(), $plotDirection = null, $smoothLine = null, $plotStyle = null)

对于PHPExcel \ Examples \ 33chartcreate-pie.php:88它会是这样的:

$series1 = new PHPExcel_Chart_DataSeries(
    PHPExcel_Chart_DataSeries::TYPE_PIECHART,
    NULL,                                                   
    range(0, count($dataSeriesValues1)-1),                  
    $dataSeriesLabels1,                                     
    $xAxisTickValues1,                                      
    $dataSeriesValues1,                                     
    null,
    null,
    true
);

来源: https://github.com/PHPOffice/PHPExcel/blob/1.8/Classes/PHPExcel/Writer/Excel2007/Chart.php#L1169

答案 1 :(得分:0)

如果两个饼图始终相同,则可以在空的Excel工作簿上创建它们,增加距离,将其保存在脚本可以到达的位置,并将此工作簿用作PHPExcel的模板:打开脚本中的工作簿,而不是创建饼图只是更新他们的公式。