Hi,
I was trying to play around with stacked bar chart and got into a trouble when i tried displaying the below data from the select query in to the chart
SELECT 65 Score,'Green' Signal, 2 Approved, 2 'Rejected', 1 'Pending'
UNION ALL
SELECT 70 Score,'Yellow' Signal, 1 Approved, 1 'Rejected', 3 'Pending'
I would like to have my output to look like below and on top of it Each bar should get stacked with its Status(Approved,Rejected,Pending) considering its deal length as 100% respectively.
i am not sure how to go further after getting the above result :(
Any help is highly appreciated.
Thanks.