Not sure if this helps, but if you can use query’s, a short term fix that I use is the following sample for statistics chart. Then add 3 statistic charts based on that query as source.
SELECT
case_status,
COUNT(*) AS status_count
FROM
cases_table
WHERE
case_status IN (‘Open’, ‘In Progress’, ‘Completed’)
GROUP BY
case_status;