For chart types "pie" and "donut", the legend should include the category color:
In charts_highcharts_drilldown.module we should change line 39 from:
if (isset($definition['legend']) && $definition['legend']['enabled'] == TRUE) {
to:
if (isset($definition['legend']) && $definition['legend']['enabled'] == TRUE && !in_array($definition["chart"]["type"], ['donut','pie'])) {
Fixed
1.0
Code