Reputation: 13357
New to high charts and javascript and want to know how to open up a new modal window of that chart when per a click event?
Upvotes: 0
Views: 1190
Reputation: 37588
Take look at click event on chart.
chart: {
events: {
click: function(event) {
alert ('x: '+ event.xAxis[0].value +', y: '+
event.yAxis[0].value);
}
}
},
http://api.highcharts.com/highcharts#chart.events.click
Upvotes: 1