When I have a stacked column chart, and a shared tooltip, in the tooltip is there a way of detecting the element I am hovering over (e.g. so I can highlight that element in the tooltip content)?
You can use the mouseover event of the dataseries to detect which series is being hovered over, and use toolTip contentFormatter to style it accordingly.
Please take a look at this JSFiddle for a working example of the same.