3D stacked horizontal bar chart
Posted: Sat Oct 04, 2008 2:30 pm
Hi,
I have a PHP code which runs a MySql query and generates Arrays. For each projectcode, it generates 1] Associative Array for Employees working on that project
2] Associative Array for Employee Budgeted Hours
3] Associative Array for Employee Completed Hours
4] An Employee Available Hours Associative Array is created by subtracting Completed hours - Budgeted Hours.
I want to display the values in these array as a 3D stacked horizontal bar chart for each Employee.
I have googled for a 3D stacked horizontal bar chart php script but could not find any. Is there anyone who has made such a type of script???
The bar chart should look like this:
Name Budgeted Completed Available
______________________________________
sam | 35 | 45 | 10|
______________________________________|
_______________________________
Jack | 30 | 20 | 10|
_______________________________|
something like the above.
I have a PHP code which runs a MySql query and generates Arrays. For each projectcode, it generates 1] Associative Array for Employees working on that project
2] Associative Array for Employee Budgeted Hours
3] Associative Array for Employee Completed Hours
4] An Employee Available Hours Associative Array is created by subtracting Completed hours - Budgeted Hours.
I want to display the values in these array as a 3D stacked horizontal bar chart for each Employee.
I have googled for a 3D stacked horizontal bar chart php script but could not find any. Is there anyone who has made such a type of script???
The bar chart should look like this:
Name Budgeted Completed Available
______________________________________
sam | 35 | 45 | 10|
______________________________________|
_______________________________
Jack | 30 | 20 | 10|
_______________________________|
something like the above.