I am building a data cube and its dashboard. The datacube will output only a few rows, which will be displayed almost as-is in a table in the dashboard.
Each row (about 15) will be of the form ‘event name’, ‘raw value’, ‘percent value’.
In that case, ‘event’ is found as an implicit hierarchy by Dundas, which is correct. One issue is to properly order those events in my dashboard. There is no logical/alphabetical order (eg. I want to see ‘sent’ before ‘open’ in my table, then ‘click’ and so on).
I can go in my dashboard to ‘custom sorting’ and basically add all values of ‘event’ as top override. It works, but it’s long, ugly, hard to update if I forgot one event in the middle, and I don’t know what will happen if an event name changes.
Is there a way to add an ‘order’ attribute to the event implicit hierarchy and then use it for sorting?
In the same way, could I add a ‘caption’ attribute to my event and use it as a caption in my dashboard table?
Cheers,