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!