I\'m using a Highcharts column chart (http://www.highcharts.com/demo/column-basic) with over 50 rows of data and 3 different series. Because of this amount and the chart wid
Here's a quick sample I just created. I'm tired and it could be improved. It links the axis label to the mouseover by point index:
series: {
point: {
events: {
mouseOver: function() {
$(this.series.chart.xAxis[0].labelGroup.element.childNodes[this.x]).css('fill', 'black');
},
mouseOut: function() {
$(this.series.chart.xAxis[0].labelGroup.element.childNodes[this.x]).css('fill', '#999999');
}
}
}
}
Fiddle here.