phpspreadsheet - lines without markers in chart
phpspreadsheet - lines without markers in chart I am using phpspreadsheet to generate line charts. Almost everything is fine, but I don't get how to change plot style. Here is what I have: function createChart($sheet, $sheetname, $data) { $count = $data["custom"]["count"]; $sheet->getColumnDimensionByColumn(1)->setAutoSize(true); $sheet->setCellValueByColumnAndRow(1, 1, $data["custom"]["type"]); for($j=0; $j < $count; $j++) $sheet->setCellValueByColumnAndRow(1, $j + 2, $data["custom"]["dates"][$j]); for($i=0; $i< count($data["series"]); $i++) { $sheet->setCellValueByColumnAndRow($i+2, 1, $data["series"][$i]["name"]); $sheet->getColumnDimensionByColumn($i+2)->setAutoSize(true); for($j=0; $j < $count; $j++) { $value = $data["series"][$i]["data"][$j] ? $data["series"...
