views:

1143

answers:

3

I'm trying to present two types of data as diagrams in my PHP based web application:

  • cake diagram: showing different types of data for the current user, i.e. incidents and changes received by the user
  • 2D bar diagram: showing basically the same data, but for several users (i.e. incidents for user a, user b and user c; changes for a, b, c; ..)

My first idea was to use a JavaScript library. Although both diagram types are IMHO "standard", only few libraries out there support both types as I noticed after carefully going through Google's results.

I ended up with jQuery Visualize Plugin. Unfortunately I can't get it to work in the way I'd like it.

Hence I wanted to ask what your recommendations are for this requirement.

Many, many thanks!

+4  A: 

http://raphaeljs.com/

might be helpful.

rahul
wow this looks great.+1 from me :)
the_drow
+2  A: 

Have you tried Google Chart API?

kgiannakakis
Tkx kgiannakakis, but I don't like the idea of providing client data to Google.. ;)
MrG
+1  A: 

Also have a look at: processing.js.

Hippo