vote up 6 vote down star
12

Ideally I'd like to do as little preparation data work on the server as possible. The less I have to do to prep the data from the database to make a given chart, the happier I am and the more view I can make in the time.

Some of the things I'd like to chart are, for example:

  • The distribution of a series of response times
  • The number of occurrences per category (basic bar chart)

I'm sure there are others I haven't thought of yet.

Anything that helps me get from a series such as:

[1, 2, 2, 2, 3, 4, 5, 5, 3, 1] or more likely something like [1.2, 3.2, 3.1, 1.1, 4.3, 3.4] where it isn't just a case of counting the frequency of the item

to an actual distribution would be great.

Thanks.

EDIT: To clarify I guess I'm asking for more than just charting APIs, a search on Yahoo or Stack Overflow already finds answers to that. I'm looking for something that can help me turn data into visualizations with the least effort. So with the series above, something that could map it directly into some standard distributions such as a Gaussian distribution.

flag

10 Answers

vote up 10 vote down check

I like Google Charts API. It is brain-dead simple to use. You generate your data in the URL for an image, and the Google server spits back the GIF with the chart in it. You don't need JavaScript or Flash.

link|flag
Plus, there are a bunch of wrappers in the language of your choice: groups.google.com/group/google-chart-api/… – Julien Chastang Feb 25 at 18:29
I found JS Charts much easier to use than Google Charts, the only advanatage i felt that google charts has is that it generates images while js charts uses canvas which means they cannot be saved. – Dinesh Manne Feb 26 at 6:37
I used Google API charts and found that they are much simpler to use and render good quality graphs. However the downside is that since its a gif you cant track any mouse movements over it. – Akshar Prabhu Desai Mar 2 at 6:59
If you want to track drill-down, then no. You can track mouse movements over any GIF, rendered by Google or not. – Diodeus Mar 2 at 14:09
vote up 0 vote down

JS Charts does not support area charts

link|flag
vote up 0 vote down

Try the Google visualization API.

http://code.google.com/apis/visualization/

link|flag
vote up 2 vote down

jQuery Sparklines

link|flag
++ Can't beat sparklines for dashboards and info-at-a-glance scenarios. Edmund Tufte turned me onto these years ago and the release of a jQuery library has made implementation simplistic. – David Thomas Garcia Mar 1 at 3:20
vote up 0 vote down

My reports done with Fusion Charts always seem to impress. Fairly easy to work with and lots of charting options. Flash is the technology, so no real platform troubles for web display.

link|flag
vote up 0 vote down

I haven't used it extensively yet, but after some initial fiddling around i was quite impressed with Open Flash Chart (which i just noticed was already mentioned by Dinesh above)

link|flag
vote up 0 vote down

Take a look at amCharts. It's a Flash based library. You can pass data to it in XML or CSV format (or in case you use ASP.NET there's a control wrapper which supports data-binding).

link|flag
vote up 0 vote down

I've used flotr(http://code.google.com/p/flotr/) before, which is heavily inspired by the above mentioned flot, but instead of jquery it uses prototype. It works the same way as flot as in it is pure javascript.

link|flag
vote up 5 vote down

I use JS Charts(http://www.jscharts.com/), which is a javascipt based one, looked simple and easy enough for me to use. They even have support for xml data in addition to js. It is free and they have got some exmaples here

Works on IE and Chrome fine, so ideally shoudl work on Firefox also

On the Flash side, there is Open Flash Chart (http://teethgrinder.co.uk/open-flash-chart/) , they have got some helper classes for major languages.

Edit: based on the additional information in question i guess Google Visualization API (http://code.google.com/apis/visualization/) might work out for you.

link|flag
I use Open Flash Chart too and really like it. Also with the open source code it is really easy to alter for application-specific features. The .NET wrapper is useful too. – David Thomas Garcia Mar 1 at 3:18
The only issue with JS Charts is that you cannot do two trends in a line graph which is integral for data comparison sort of thing. – andHapp Mar 1 at 17:04
vote up 2 vote down

I've used flot (http://code.google.com/p/flot/) with some good results. It's pure javascript, doesn't require flash. It uses an html canvas to draw the charts from javascripts. Works on msie with a plugin. Some examples: http://people.iola.dk/olau/flot/examples/

link|flag
This is what SO uses for graphics :P – fmsf Feb 21 at 14:21
I've tested literally dozens of charting scripts, server-side and client-side (I got kinda obsessed with visualizations for a while), and flot blows all the others away, even the Google Charts API. – Jens Roland Feb 26 at 13:42
Yes, flot really rocks ! And my inspiration to use it comes from SO itself !! – Vijay Dev Mar 1 at 11:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.