Javascript examples for highcharts:Line Chart
Adding only one clickable point to the line chart
<html> <head> <title>Highcharts Demo</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> <script type="text/javascript"> $(function () {//from w w w . j ava 2 s. c o m var chart = new Highcharts.Chart({ chart: { renderTo: 'container', type: 'line' }, xAxis: { categories: ['Green', 'Pink'] }, series: [{ data: [{ name: 'Point 1', color: '#00FF00', events: { click: function() { console.log('Clicked on FIRST point.'); } }, y: 1 }, { name: 'Point 2', color: '#FF00FF', events: { click: function() { console.log('Clicked on SECOND point.'); } }, y: 5 }] }] }); }); </script> </head> <body> <script src="https://code.highcharts.com/highcharts.js"></script> <div id="container" style="height: 400px"></div> </body> </html>