Karsan
Karsan

Reputation: 269

How to read Chart from Excel sheet using java?

I have used jxl library to read excelsheet and it works fine for String and Numbers but now I also want to read Chart from that excel sheet. As I don''t know how to read Chart using this library. can anyone tell me, how do I do?

Upvotes: 1

Views: 3989

Answers (1)

sura2k
sura2k

Reputation: 7517

You can try Apache POI. This is the best as per my experience. I was able to grab some information from Excel2007 charts, few years ago. Apache POI should have more and more options by now.

You may able to use XSSFChartSheet, XSLFChart, ...etc classes.

Read these as well.

How to get chart info from an Excel spreadsheet using Apache POI?

http://poi.apache.org/spreadsheet/

Apache POI Limitations

Upvotes: 1

Related Questions