Hello, I try to export a chart from an excel sheet to an image.
There is a series in the chart, that has a dotted line in the excel file. Unfortunately this line is solid after exporting it.
I tried setting the Properties in code like so:
series.SerieFormat.LineProperties.LineColor = Syncfusion.Drawing.Color.White;
series.SerieFormat.LineProperties.LinePattern = ExcelChartLinePattern.CircleDot;
But this did not work as well.
Can you guide me to fix this issue?