Lamps1829
Lamps1829

Reputation: 2451

Interactive data visualization in javascript/jquery?

Can anyone please recommend some javascript/jquery data visualization libraries that matches the following criteria:

"
    -takes the entire dataset in one go in some reasonable format (i.e. as a JSON object) as input
    -is interactive:
       -user can specify the chart format (bar chart, scatterplot, pie chart, etc.)
       -user can specify the data range and which columns of a data set are to be plotted
    -is relatively efficient, and doesn't have too much of a memory footprint
    -can generate an image file from the visualization
    -produces attractive visualizations
    -is free to use, with no limitations
"

Thank you!

Upvotes: 0

Views: 493

Answers (1)

user750313
user750313

Reputation: 51

We are using recline.js for a long time and it is based on backbone.js as MVVC framework and you can use also d3.js as view framework.

There are a lot of forks on Github that add cool graphs and add-ons.

Upvotes: 1

Related Questions