David Zhao
David Zhao

Reputation: 4514

Good Ajax Chart/Graphic Library

I know there has been several discussions on JavaScript chart/graphics libraries, and there is many out there. What I need is one that can:

  1. Zooming and panning
  2. Data point manipulation (like when click on a data point, highlight other data points within the data series with the same certain parameter of the clicked one)
  3. Dynamically change data point values (e.g.: dragging a data point dynamically updating the line shape)
  4. Error bar support, horizontally and vertically
  5. Select data points on the chart Seems like Flot may have most of the features, if not all(not sure about 3, and 4), but would like to see if I don't miss out on there nice libraries.

Upvotes: 4

Views: 4452

Answers (3)

NilColor
NilColor

Reputation: 3542

Take a look at http://raphaeljs.com/ library. It has a plugin called gRaphaël which is charting plugin. Look good but personally didn't use it. Good luck and share you expirience if you try it.

Upvotes: 2

kioopi
kioopi

Reputation: 2250

The Dojo Charting Engine has a pretty astonishing featureset. Sadly dojo seems to suffer from a general lack of evangelism. I dont know if there are good introductory tuts, maybe the best way is to learn from examples.

Upvotes: 0

Matt
Matt

Reputation: 44078

Check out the awesome Visualization API on Google's AJAX APIs Playground

Upvotes: 4

Related Questions