How to extract data from excell to Generate graphs?

1

I have an excell table with 50 rows and 10 columns, containing data students enrolled in a contest. I have to create graphs from these data. Could anyone suggest a way to extract and work these data in html and javascrit?

    
asked by anonymous 07.04.2016 / 14:42

1 answer

5

A good option is to use D3.js . It uses pure javascript, but if you want you can associate jQuery to make it easier to manipulate objects on the page. See here examples of basic maps . You can work with your spreadsheet in excel, save with CSV and use in d3js. You only copy the javascript code on your page, create a stage (a div for example) and save the CSV file inside a folder of your project. and nothing else. D3 will create the remainder for you.

    
07.04.2016 / 14:59