My first very simple pie chart is
SELECT 'dbr.chart', 'Pie';
SELECT `bfv_re_loan`.`lateness_category`, COUNT(`bfv_re_loan`.`lateness_category`)
FROM `vf-shem`.bfv_re_loan
GROUP BY `bfv_re_loan`.`lateness_category`;
It is showing tooltip (from hovering) data correctly, but no labels.
It is drawing the lines leading from the pie slices but no labels at the end of the lines.
Similarly, my first very simple bar chart is showing the bars and the tooltips but no labels
SELECT 'dbr.chart', 'Column', '2D Column';
SELECT COUNT(`bfv_re_loan`.`lateness_category`), `bfv_re_loan`.`lateness_category`
FROM `vf-shem`.bfv_re_loan
GROUP BY `bfv_re_loan`.`lateness_category`;