Highcharts various colors for selected columns

Is it possible to have different colors for different selected columns in tall charts?

Here is a sketch of what I'm trying to do: http://jsfiddle.net/jZmYW/4/

When choosing a point (column), it should get a certain color. I am trying to achieve this by setting new data for the selected point. Visually, this leads to the expected result, but comes with a JS error: "Uncaught TypeError: property" setState "of object # is not a function."

I also tried applying functionality to the series (with the installation of new data there). This gives a completely similar result when the JS error is slightly different: "Uncaught TypeError: property" firePointEvent "of object # is not a function."

Any ideas?

+4
source share
1 answer

The problem can be solved by determining the specific selection state for each series, see http://jsfiddle.net/jZmYW/5/

Thanks to the high card support team for their help here.

+7
source

All Articles