I want to display the share of times spent for x categories.
The current pie chart looks like this.
Category A | Category B | Category C |
---|---|---|
23 % | 47 % | 30 % |
Hours: 9.2 | hours: 18.8 | 12 |
What I want to achieve instead is this view:
Category A | Category B | Category C |
---|---|---|
23 % | 47 % | 30 % |
Hours: 09:12 | hours: 18:48 | 12:00 |
However the initial values (9.2, 18.8, 12) are used to calculate the share for each category.
How can I change the view afterwards? Or is there are way to calculate what I want?
I tried to change the data thats provided in [results] by transforming its contents in a function.