How to add non-aggregated columns in WebDataRocks

221 Views Asked by At

Some content in the data is detailed information. For functional needs, I need it to be displayed in the report, but it should not be used for aggregation, but displayed in each item. As shown in the picture, the column (name, version) should be displayed in each row, not as a category. What should i do?pic

1

There are 1 best solutions below

1
On

If I understood correctly, you want to display raw records instead of aggregated data.

You should try switching to the flat form. Just specify the grid.type property of the options object as flat:

{
  options: {
    grid: {
     type: "flat"
    }
  }
}

Check out the official documentation for more information on this point.