Hello,
I am using Aspose.Cells v8.6.3 to generate PDF of chart - Test Chart in the attached excel file. In the PDF output, all bars appear below 0 value rule even if they are positive values
Following code is used to generate the output:
void chartToPDF() throws Exception {
Workbook workbook = new Workbook(“Test.xlsx”);
WorksheetCollection ws = workbook.getWorksheets();
String worksheetName = “Exhibits”;
Chart chart = ws.get(worksheetName).getCharts().get(“Test Chart”);
chart.toPdf(“D:\Aspose generated Test Chart.pdf”);
}
Can you please analyse this issue.
Thanks,
Neha