suppose I have a JSON object, in the example users can give a rating to themselves
[
{
"to": "jeff",
"rating": 50,
"from": "jeff"
},
{
"to": "bob",
"rating": 50,
"from": "jeff"
},
{
"to": "jeff",
"rating": 75,
"from": "bob"
},
{
"to": "bob",
"rating": 75,
"from": "bob"
}
]
I know how to display this in a simple grid panel like below
But this is a bit confusing, is there an easy way to convert this into a matrix table grid similar to the format below?
Just looking for a pure JS / jquery way of doing it, many thanks for any input!

