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'])) {
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | Legend_should_include_colors_for_pie_and_donut-3381847-2.patch | 799 bytes | diaodiallo |
Comments
Comment #2
diaodiallo commentedAdded the patch.