Reputation: 105
Which open source JavaScript framework for drawing chart is better, in regards to:
Being small and easy to learn
Having good documentation
Having easy to use API (just giving data and position should be enough, unlike this one)
Upvotes: 1
Views: 2169
Reputation: 590
It maybe not exactly what you are looking for, but Google's Chart API is pretty cool and easy to use.
And here is other 20 Best JavaScript Charting and Plotting Libraries
Upvotes: 0
Reputation: 2779
jqplot, if the jquery overhead is not an issue. The examples page shows how simple graphs can be defined in a single line of code. Dual licensed under the MIT and GPL version 2 licenses.
Otherwise, google for "best javascript chart libraries" and you will find many articles that introduce and compare some of the most popular solutions.
Upvotes: 0
Reputation: 68172
If you're just looking for basic things like line charts or bar graphs, check out Flot.js. It's easy to learn and use but not super flexible.
Upvotes: 1