I'm facing some challenges in creating a multi-select column chart using highcharts. My objective is to allow users to select/deselect any category on the chart.
Expected Behavior:
When a category (e.g. "0 - 1M") is clicked, both bars should change color. Clicking again should revert the color back.
How can I notify an external app (AngularJS) about the selected columns?
I have tried using allowPointSelect: true, but it only selects one column instead of both columns within the category.
allowPointSelect: true,
I'm unsure about what steps to take next.
JSfiddle link - http://jsfiddle.net/w7dvrkhz/9/
If you have any ideas, please share them!