So I have a ColumnChart and one of the built-in functionality is that you can hover over an item (so called category) in the legend of the chart and you get some highlight-border around the corresponding columns in the chart.
Now I have many columns and categories in my chart and a highlighted series/category is very hard to see, because the default behavior just shows a 1px gray border around the columns. My columns are only a few pixels width and I still need to differentiate 10 different categories (=colors). So picking only very light colors (where the border would be easy to spot) is no option. I've found no way of changing:
- The style of the highlight-border (primarily the color) or
- The color of the columns (fill color) when their respective category is selected in the legend.
Is there some property I can pass to the draw()
call of my chart to change the highlighting? Do I have to manually override some events/methods?
Help is highly appreciated!