Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Suppose I have a data in this format:
Experience Group | Numbers |
Rookie | 150 |
1-3 yrs | 90 |
3-5 yrs | 110 |
5-9 yrs | 70 |
9 + yrs | 40 |
Requirement:
I want to show this in a Pie Chart, but the Dimensions are getting placed random. I want the Dimension Value in Clockwise (serially)
My need is for example:
How can this functionality be possible?
Regards,
Dicky Mohanty
you can add a field and use it to sort by expression
load rowno() as id, * inline [
Experience Group, Numbers
Rookie, 150
1-3 yrs, 90
3-5 yrs, 110
5-9 yrs, 70
9 + yrs, 40
];
you can add a field and use it to sort by expression
load rowno() as id, * inline [
Experience Group, Numbers
Rookie, 150
1-3 yrs, 90
3-5 yrs, 110
5-9 yrs, 70
9 + yrs, 40
];