I would like to know whether a specific node can be highlighted on Click similar to states in hover(linkOpacity) and to replace it with it's previous colour when some another node/series is clicked.
In short, when the chart is loaded, the top node would be highlighted initially, and when the user clicks on another node, that particular selected node gets highlighted (and the initially highlighted node would get back to its normal colour).
Please find below a similar JSFiddle which highlights specific series on click (which is being done by adding class with the help of JavaScript).
events: {
click: function (event) {
event.target.classList.add('additionalClass');
}
}
Is there any feature in Highcharts which makes this possible without any DOM manipulation done by the end user?