vote up 8 vote down star
2

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?

flag

63% accept rate

9 Answers

vote up 10 vote down check

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.

link|flag
2  
Flot is what stackoverflow uses for the reputation graph on your profile page. – Mike Oct 31 '08 at 6:08
GFlot (code.google.com/p/gflot) is a pretty good wrapper if you're using GWT – Steve Armstrong Oct 14 at 18:52
vote up 8 vote down

Here is my personal shortlist with comments:

  • Flot: +beautiful presets +very easy to use (the hardest was converting ISO datetimes to Javascript dates, which isn't hard at all) +uses jQuery - doesn't do pie charts, -looks a little bit abandoned but I could be wrong about that
  • Flotr: ++even prettier charts than Flot +-uses Prototype (which I've never worked with), -no pie charts either
  • YUI: +pie charts! + support and strong team & community -uses Flash, ugh -doesn't handle time axes as nicely as Flot
  • Google charts API (not a JS library): +support & community +pretty, too -really tedious construction of the REST URLs for any more complex graph -no automatic date/time axis support

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.

link|flag
1  
flot is definitely not abandoned. it's still in active development. – Dan Wolchonok Mar 16 at 3:40
I'm glad to hear that! – chryss Mar 16 at 18:00
vote up 6 vote down

Check out Google Charts

link|flag
vote up 4 vote down

Theres the Google Visualization API,

It lets you create easy charts/tables (some of them are even interactive) pretty much anything in javascript

google.load("visualization", "1", {packages:["areachart"]});
  google.setOnLoadCallback(drawChart);
  function drawChart() {
    var data = new google.visualization.DataTable();
    data.addColumn('string', 'Year');
    data.addColumn('number', 'Sales');
    data.addColumn('number', 'Expenses');
    data.addRows(2);
    data.setValue(0, 0, '2004');
    data.setValue(0, 1, 1000);
    data.setValue(0, 2, 400);
    data.setValue(1, 0, '2005');
    data.setValue(1, 1, 1170);
    data.setValue(1, 2, 460);
    var chart = new google.visualization.AreaChart(document.getElementById('chart_div'));
    chart.draw(data, {width: 400, height: 240, legend: 'bottom', title: 'Company Performance'});
  }

here are some examples from the google gallery of visualizations currently available.

http://code.google.com/apis/visualization/documentation/gallery/images/icon-areachart.pngalt textalt text

link|flag
vote up 2 vote down

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!

link|flag
vote up 1 vote down

10 JavaScript Graphing/Charting Libraries

link|flag
vote up 0 vote down

If you use jquery:

http://code.google.com/p/flot/

link|flag
vote up 0 vote down

DojoX is an option

link|flag
vote up 0 vote down

For the YUI users:

http://developer.yahoo.com/yui/charts/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.