Dels
Dels

Reputation: 2425

Javascript Chart Library that support loading from csv/xml/json

I search some free js charting library (bar,line,pie) that works standalone (no JQuery, MooTools, Prototype, etc) with feature support loading data from file (csv/xml/json, csv preffered).

Something like gRaphael is nice but it doesn't support loading data from external file

Thanks

Upvotes: 9

Views: 11229

Answers (3)

Diana Jobs
Diana Jobs

Reputation: 39

A js chart library, unlimited free commercial use, supports XML and the above mentioned chart types: http://mindfusion.eu/free-js-chart.html

Upvotes: 0

Noel Llevares
Noel Llevares

Reputation: 16037

This question is old but since it continues to pop up in search results, I hope others who are having this need can find the following JS library as useful as I find it.

http://dygraphs.com/

It supports loading from CSVs and others. Its very fast with lots of data points.

Upvotes: 6

nrabinowitz
nrabinowitz

Reputation: 55688

The D3.js library has no external dependencies (though it does require a modern browser with SVG support) and includes a set of functions for loading data from external sources, including CSV, XML, and JSON files.

It's not quite as out-of-the-box as some of the other options, but after a reasonable learning curve you can do just about anything any of the other Javascript libraries can do.

Upvotes: 6

Related Questions