Hey, community! I have an API which returns following list of arrays:
[{“A”:1.1,“B”:1.2,“C”:1.3},
{“A”:2.1,“B”:2.2,“C”:2.3},
{“A”:3.1,“B”:3.2,“C”:3.3}]
I would like to present data visually on my app:
A B C
1.1 1.2 1.3
2.1 2.2 2.3
3.1 3.2 3.3
Don’t find it practical in forming columns with RG. Any thoughts? Thank you!