Hello,
I am using Aspose.Cells v8.6.2.4 to generate PDF of chart - M-CC4R1 in the attached excel file. In the PDF output the, the thickness of X-axis and Y-axis lines is more than the thickness in actual chart.
Following code is used to generate the output:
void chartToPDF() throws Exception {
Workbook workbook = new Workbook("test.xlsx");
WorksheetCollection ws = workbook.getWorksheets();
String worksheetName = "GOFER CLF";
Chart chart = ws.get(worksheetName).getCharts().get("M-CC4R1");
chart.toPdf("D:\\test.pdf");
}
Can you please analyse this issue.
Thanks,
Neha