Line chart from a single record

0
 I have an entity with 29 decimal attributes. I need to display those attributes in a line chart, i.e. the chart will have 29 data points along X axis and values of those attributes along Y. How should I think about it?
asked
1 answers
0

Generally, a line chart relies on having a “set” of data elements, where each element has an x and y value. I’d suggest that you create a non persistent entity, “DataPoint” with attributes “x” and “y” and then use a microflow that takes your one big object as a parameter and creates 29 DataPoint objects, which can then be used in your chart.

answered