sarowlwp
sarowlwp

Reputation: 105

JavaScript framework for drawing chart

Which open source JavaScript framework for drawing chart is better, in regards to:

  1. Being small and easy to learn

  2. Having good documentation

  3. Having easy to use API (just giving data and position should be enough, unlike this one)

Upvotes: 1

Views: 2169

Answers (4)

Turgut
Turgut

Reputation: 590

It maybe not exactly what you are looking for, but Google's Chart API is pretty cool and easy to use.

And here is other 20 Best JavaScript Charting and Plotting Libraries

Upvotes: 0

Bogdan Emil Mariesan
Bogdan Emil Mariesan

Reputation: 5647

You should try:

http://www.highcharts.com/demo/

One of my favourites.

Upvotes: 3

widged
widged

Reputation: 2779

jqplot, if the jquery overhead is not an issue. The examples page shows how simple graphs can be defined in a single line of code. Dual licensed under the MIT and GPL version 2 licenses.

Otherwise, google for "best javascript chart libraries" and you will find many articles that introduce and compare some of the most popular solutions.

Upvotes: 0

Tikhon Jelvis
Tikhon Jelvis

Reputation: 68172

If you're just looking for basic things like line charts or bar graphs, check out Flot.js. It's easy to learn and use but not super flexible.

Upvotes: 1

Related Questions