My requirement is to display charts present in MS Office excel 2007 in web page.
Can someone please help me getting it right by any language? PHP is my preference by i didn’t get any help on google.
I have more than 1 chart in all sheets inside a single excel file.
PHPExcel and equivalent API’s doesn’t support chart import support, so only solution i see is to import excel sheets as image and display.
Take a look at the 32chartreadwrite.php in PHPExcel’s /Tests directory. This provides the basic code for reading an Excel 2007+ .xlsx file with its chart data.
While it doesn’t support every feature (only a single Y-axis, for example) or every chart type (stock charts aren’t supported by the renderer), it can work with a wide variety of chart types.