views:

595

answers:

5

Can you suggest me some of good javascript libraries for drawing charts with json data...

I thought of using Jqplot chart plugin for jquery javascript library...

Some more would be useful...

EDIT:

  • List of chart types would be very useful for the suggested library...
+1  A: 

flot

Flot is a pure Javascript plotting library for jQuery. It produces graphical plots of arbitrary datasets on-the-fly client-side.

The focus is on simple usage (all settings are optional), attractive looks and interactive features like zooming and mouse tracking.

The plugin works with Internet Explorer 6/7/8, Firefox 2.x+, Safari 3.0+, Opera 9.5+ and Konqueror 4.x+ with the HTML canvas tag (Internet Explorer where the excanvas Javascript emulation helper is used).

Eimantas
As a side note, this is what Stack Overflow uses for reputation charts.
icktoofay
A: 

Flot is a pure javascript library for jQuery which has a lot of nice features.

Check out the examples page.

Edit: seems Eimantas beat me to it :)

Kjetil Watnedal
A: 

You may look into FusionCharts but they are more XML-oriented.

SF.
+4  A: 
  • JS Charts (bars, lines, pies)
  • LT Diagram Builder (areas, arrows, bars, dots, lines, pies)
  • Flot (areas, bars, lines, points and any combinations of these)
  • Canvas 3D Graph (it is a special type of bar graph that plot numbers in 3D)
  • PlotKit (bars, lines, pies)
  • Protochart (areas, bars, curves, lines, pies and combinations)
Li0liQ
+2  A: 

You can find 13 of them here on Henry Jones's post.

Perpetualcoder