My JSON object returns data similar to this:
Count Group Num year
16 Group1 1 2013
15 Group1 2 2013
21 Group1 3 2013
34 Group1 4 2013
12 Group1 5 2013
30 Group2 1 2013
23 Group2 2 2013
In the area chart I group by field [Group]. When it's rendered in the chart, the category (horizontal) axis (Field [Num]) only displays values 1 & 2, since Group2 only has [Num] 1 & 2. What would I need to do to display the [Num] from Group1? Group 1 will will always have 5 [Num].
A fix is to add 3 more rows to 'fill' what's missing from Group2 (3, 4, 5), but that's not really a solution.
Thanks.
Count Group Num year
16 Group1 1 2013
15 Group1 2 2013
21 Group1 3 2013
34 Group1 4 2013
12 Group1 5 2013
30 Group2 1 2013
23 Group2 2 2013
In the area chart I group by field [Group]. When it's rendered in the chart, the category (horizontal) axis (Field [Num]) only displays values 1 & 2, since Group2 only has [Num] 1 & 2. What would I need to do to display the [Num] from Group1? Group 1 will will always have 5 [Num].
A fix is to add 3 more rows to 'fill' what's missing from Group2 (3, 4, 5), but that's not really a solution.
Thanks.