Hi all,
As is often the case, I have what seems like a simply thing to chart, but I am having troubles getting the SSRS/SSDT (2012) BubbleChart to do what I want.
My query data contains rather basic information every record has a 2 "scores" from 0 to 10:
ID, Score1, Score2
1, 3, 4
2, 3, 8
3, 8, 1
4, 3, 4
5, 3, 4
6, 3, 8
7, 0, 2
8, 10, 9
...
What I am striving to achieve is:
- Score1 across the X Axis
- Score2 up the Y Axis
- The "bubble" on the chart representing the number of records plotted at the intersection. For example:
- The intersection 3x & 4y there should be 3 records (1, 4 & 5). The bubble should be sized accordingly and the data label stating "3".
- The intersection 8x & 1y there should be 1 records (3). The bubble should be sized/labelled accordingly.
Any help on how I need to set this up?
Thanks in advance.