我需要删除散点图中的线条。我尝试修改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);
有什么想法吗?