Hello,
I have a timeline component in my low code app that I'm struggling with to display data the way I'm hoping it would.
I have two similar queries that i have added to the component. I fetch the same data in both queries, but I want to display some items in two different groups.
For each query I've used Column Manipulations->Concatenate to create a new column with the same Name for each query.
I'm then applying the grouping function to the timeline using the created column. The grouping itself works, however, the group label doesn't work for one of the queries, it displays {Group_0} instead of the value of the column.
What can I do to fix this?
There is an open issue on our backlog to tackle this. A workaround for this is to avoid using multiple queries by combining them into one. One way to achieve this is by outer joining both queries together, and combining the equivalent columns with this SLC-GQIO-CombineColumns operator. You'll end up with one table that contains the rows of the two original queries, but with a different value for the group column. The you can simply group on that column.
Hi Gilles,
ok, thank you!