在PHPExcel中设置Scatter Chart类型

时间:2013-06-07 06:08:23

标签: charts phpexcel scatter

我需要删除散点图中的线条。我尝试修改PHPExcel的Chart文件夹中的文件,但我的解决方法都没有解决我的问题。我想你应该在下面的数组中设置STYLE_MARKER,但它似乎不起作用。

$series = new PHPExcel_Chart_DataSeries(
PHPExcel_Chart_DataSeries::TYPE_SCATTERCHART,   // plotType
NULL,                                           // plotGrouping (Scatter charts don't have any grouping)
range(0, count($dataSeriesValues)-1),           // plotOrder
$dataseriesLabels,                              // plotLabel
$xAxisTickValues,                               // plotCategory
$dataSeriesValues,                              // plotValues
NULL,                                           // smooth line
PHPExcel_Chart_DataSeries::STYLE_MARKER     // plotStyle);

有什么想法吗?

0 个答案:

没有答案