jpchev commented on issue #32496: URL: https://github.com/apache/superset/issues/32496#issuecomment-2713370011
> I assume stacking should work like dimensions, so the user can flexibly add both. In the example I shared, this would let us clearly separate P2 and P3 bugs. Do you want to see P2 and P3 bugs separate, but stacked together? If yes, wouldn't it be enough to modify the query in the dataset? In my video I have the following data for 'bugs P2/3 Opened', with a "cat" column, which is the dimension is stack by, and a "type" column ``` month, cat, type, no '2023#1', 'b', 'bugs P2/3 Opened', 10 '2023#2', 'b', 'bugs P2/3 Opened', 15 '2023#3', 'b', 'bugs P2/3 Opened', 20 '2023#4', 'b', 'bugs P2/3 Opened', 18 '2023#5', 'b', 'bugs P2/3 Opened', 8 '2023#6', 'b', 'bugs P2/3 Opened', 7 '2023#7', 'b', 'bugs P2/3 Opened', 5 ``` changing the data as follows would stack together P2 and P3 ``` month, cat, type, no '2023#1', 'b', 'bugs P2 Opened', 2 '2023#1', 'b', 'bugs P3 Opened', 8 '2023#2', 'b', 'bugs P2 Opened', 5 '2023#2', 'b', 'bugs P3 Opened', 15 '2023#3', 'b', 'bugs P2 Opened', 10 '2023#3', 'b', 'bugs P3 Opened', 10 '2023#4', 'b', 'bugs P2 Opened', 8 '2023#4', 'b', 'bugs P3 Opened', 10 '2023#5', 'b', 'bugs P2 Opened', 5 '2023#5', 'b', 'bugs P3 Opened', 3 '2023#6', 'b', 'bugs P2 Opened', 4 '2023#6', 'b', 'bugs P3 Opened', 3 '2023#7', 'b', 'bugs P2 Opened', 3 '2023#7', 'b', 'bugs P3 Opened', 2 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
