How to create matrix visualization

Grafana 10.1
I am trying to create a matrix to see network links.
I have prometheus data returned such as:
OctetCount {src=“A”, dst=“B”} 3
OctetCount {src=“B”, dst=“A”} 3
OctetCount {src=“B”, dst=“C”} 5
OctetCount {src=“C”, dst=“B”} 7
etc…
I would like a table such as:
A B C
A 3
B 3 5
C 7

I have found the Transforms “Label to fields” and “Grouping to matrix” but I have not figured out what visualization can present this data.
This seems like a simple task, so I think I am missing something obvious or it is not possible.
Can anyone give me some pointers?

how looks the row “Table view” without a transformation?

I found my problem. I was overlooking the Format option for the query result. I had only changed the Type to instant.
This SO question lead me to my answer. Grafana table from Prometheus metric with key-value labels - Stack Overflow

This SO question also helped.

However the previous SO question I posted was a more direct answer.