Hi,
Thanks for using Aspose.Cells.
This is to inform you that we have fixed your issue CELLSJAVA-42018 now. We will soon provide the fix after performing QA and including other enhancements and fixes.
Here are some tips for you.
1. If you want to export chart to SVG format, please use the following code:
Workbook wb = new Workbook(filePath + "bg2.xlsx");
HtmlSaveOptions o = new HtmlSaveOptions();
ImageOrPrintOptions imgOptions = o.getImageOptions();
imgOptions.setSaveFormat(SaveFormat.SVG);
imgOptions.setImageFormat(ImageFormat.getIcon());
wb.save(filePath + "1_java.html", o);
2. If you want to export chart to EMF format, please use the following code:
Workbook wb = new Workbook(filePath + "bg2.xlsx");
HtmlSaveOptions o = new HtmlSaveOptions();
ImageOrPrintOptions imgOptions = o.getImageOptions();
imgOptions.setImageFormat(ImageFormat.getEmf());
wb.save(filePath + "2_java.html", o);