OptimusCrime
OptimusCrime

Reputation: 14863

Good javascript-graph library

I need do create a pretty complicated graph in Javascript. It's a line-graph with dots that are click-able. I've looked at the google-api, and it just won't do. Also, it needs to be able to rendre several graphs in one window.

Would be really nice if it was powered by jQuery, since the rest of the project is running on that platform.

Does anyone know about any good libraries? I have not gotten across any suitable yet.

Thomas

Upvotes: 1

Views: 900

Answers (6)

Timothy Allyn Drake
Timothy Allyn Drake

Reputation: 926

gRaphaël is a plug-in that extends the super impressive Raphaël JavaScript vector library and provides extensive APIs for canned and 100% custom charts / graphs. It is also MIT licensed, which means it's free for commercial and non-commercial use!

gRaphaël

Upvotes: 0

321X
321X

Reputation: 3185

Flot rocks! It is opensource, so no license costs!

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

You can do amazing things with it. See it's showcase here: http://code.google.com/p/flot/wiki/FlotUsage

Good luck!

Upvotes: 0

Jesper Rønn-Jensen
Jesper Rønn-Jensen

Reputation: 111616

HighCharts may fit your needs, and it has amazing looks. Have a look at the demo page line chart with clickable dots where there is an example of line chart with multiple lines and clickable dots

Upvotes: 0

Remy
Remy

Reputation: 12703

We are also using HighCharts, but the HighStocks variation.

http://blog.supertext.ch/2011/09/a-new-charting-library-for-the-supertext-website/

We assembled a list of other tools via Choosle. (See factors link)

Upvotes: 0

Luwe
Luwe

Reputation: 3034

Try highcharts:

http://www.highcharts.com/

It uses either jQuery, MooTools or Prototype to run: http://www.highcharts.com/documentation/how-to-use

There are more jQuery alternatives though: http://www.1stwebdesigner.com/css/top-jquery-chart-libraries-interactive-charts/

Upvotes: 1

Igor Dymov
Igor Dymov

Reputation: 16460

I'd recommend HighCharts

Upvotes: 4

Related Questions