I am creating an Excel file with line chart. I\'ve created chart and filled it with data but I cannot create points on my chart. Does anyone know, is there a way I could gen
Solution:
CTPlotArea plotArea = xssfChart.getCTChart().getPlotArea(); CTMarker ctMarker = CTMarker.Factory.newInstance(); ctMarker.setSymbol(CTMarkerStyle.Factory.newInstance()); for (CTLineSer ser : plotArea.getLineChartArray()[0].getSerArray()) { ser.setMarker(ctMarker); }