tags:

views:

172

answers:

4

Recently I need to make a chart of employees' workload.Any recommendation?

Thanks.

+1  A: 

Google's chart API allows you to just call a URL with the data and it returns an image. I highly recommend using it (I do):

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

Coronatus
+1  A: 

OpenFlashChart is kinda nice I have used it before just encode the data to json in php.. :)

http://teethgrinder.co.uk/open-flash-chart-2/

Or if you wan't to go JS..

http://g.raphaeljs.com/

highcharts is cool too if you have some money to spend :)

http://highcharts.com

Chris
+2  A: 

I'd recommend pchart. Very clean, easy to install and use. The examples and documentation are great. I also love the look of the graphs that it generates out of the box.

idea
+1  A: 

jpgraph is also a very nice, powerful and easy to implement chart library build using PHP. It is capable of drawing Each and every type of graph. With proper documentation and examples.

Gaurav Sharma