我不能用 PHPExcel 制作雷达图。我需要添加到单独单元格的 DataSeriesValues 范围
$xAxisTickValues = [
new \PHPExcel_Chart_DataSeriesValues('String', $sn.'!$B$5', NULL, 1),
new \PHPExcel_Chart_DataSeriesValues('String', $sn.'!$B$10', NULL, 1),
new \PHPExcel_Chart_DataSeriesValues('String', $sn.'!$B$14', NULL, 1),
new \PHPExcel_Chart_DataSeriesValues('String', $sn.'!$B$17', NULL, 1),
]; //This works fine
$xAxisTickValues = [
new \PHPExcel_Chart_DataSeriesValues('String', $sn.'!$B$5:$B$10', NULL, 1),
];//This works too
我需要这样的东西:
$xAxisTickValues = [
new \PHPExcel_Chart_DataSeriesValues('String', $sn.'!$B$5;'.$sn.'!$A$15', NULL, 1),
]; //but this won't work