I'm creating a web application on Google App Engine for fun and I'd like to include graphs so users can see some stats. Are there any free (either as in beer or speech) JavaScript libraries that can take a table or make some AJAX call and display a graph?
|
2
|
|
|
|
|
|
Flot can create some really nice looking charts. It's a JavaScript library rather than a service like Google Charts. It does require jQuery though. |
||||||
|
|
|
Check out Google Charts |
||
|
|
|
|
If you use jquery: |
||
|
|
|
|
DojoX is an option |
||
|
|
|
|
For the YUI users: |
||
|
|
|
|
I noticed that a few people mentioned Flot but nobody mentioned Flotr! Also on Google Code http://code.google.com/p/flotr/. Check a JSON example, complete with the code to do it, right here. It requires the Prototype.js Javascript library and works in all modern browsers! |
||
|
|
|
|
Here is my personal shortlist with comments:
In a nutshell, for tiny little simple graphs I'd use the Google charts API, but for my current project (an internal reporting tool) it'll likely be Flot, though if it was client-facing code I'd probably either look further or give Flotr/Prototype a try. |
||||||
|
|
|
Theres the Google Visualization API, It lets you create easy charts/tables (some of them are even interactive) pretty much anything in javascript
here are some examples from the google gallery of visualizations currently available.
|
||
|
|
