Example to draw a flow chart in excel using Aspose cells Java

Hi Team,

Is there any other way to render a flow chart without using SmartArt in excel ?

Could you please post an example on how to draw a flow chart using aspose cells Java.

Thanks,
Thilak

@Thilakbabu
We do not support inserting smart art.
If the file is saved by MS Excel, MS Excel will cache flowchart shapes. We can convert smart art to image and output to pdf .See following codes:
Workbook workbook = new Workbook(“Book1.xlsx”);
ImageOrPrintOptions options = new ImageOrPrintOptions();
workbook.Worksheets[0].Shapes[0].ToImage(“dest.jpg”, options);