Does anyone know how to make the series in the highcharts clickable? as in if you click one of the items it will take you to an external link?
I looked through the documentation and could not find an option in the highcharts.
http://www.highcharts.com/docs/chart-concepts/series
Here is the fiddle provided in the doc. if anyone could make the series clickable that would be awesome!!
$(function () {
$('#container').highcharts({
chart: {
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}]
});
});
thank you!