Tiru
Tiru

Reputation: 21

Importing data from excel files in D3 js

I am working on D3 js collapsible tree layout, i want to know is there any way we can directly feed the data from excel file rather than using json object file?

Upvotes: 2

Views: 8977

Answers (1)

vaibhav pawar
vaibhav pawar

Reputation: 81

D3.js doesn’t have built-in Excel file format parser. It does, however, have a CSV format data parser. You can save your worksheet as CSV and use the resulting text as a source for the D3.js visualization.

Upvotes: 3

Related Questions