The following works for displaying the '2D Stacked Bar'.
It shows for each Dealer, a stacked segment for each `Lateness Category` and the size of the segment is the corresponding `Lateness Count`
My question is if when hovering over a segment I wanted to not only display the `Lateness Count` but also the `Lateness Balance`, how would I do that?
SELECT 'dbr.chart', 'StackedBar', '2D Stacked Bar', '1200', @totalHeight;
SELECT `Dealer`,
`Lateness Category`,
SUM(`Lateness Count`),
SUM(`Lateness Balance`)
FROM tmp_table_delinquency
GROUP BY `Dealer`, `Lateness Category`
ORDER BY `Dealer`;