views:

30

answers:

2

Im working on a little greesemonkey script to calculate some numbers, and hopefully graphs of a particular wikipedia page.

So i can get the data into an array of dates and values, (not key value) array of objects with .date in the format of "d/m/yyyy" and .num as the number for the date.

the dates are mostly continuous, but may miss a day or too.

What is a good js based graphing library to render this.

A: 

There is a list of 10 JavaScript graphing tools in this post. You could take a look and see if any of those are useful. Not sure how well it would work for you, but you could also take a look at the Google Chart Tools.

keyboardP
A: 

Personally, I think that Raphaël makes extremely sexy charts:

raphaël

Also see gRaphaël, a Raphaël plugin.


I haven't had a chance to use Protovis yet, but I am very impressed with what I've seen of it.

One of many examples: protovis

Matt Ball