Javascript examples for highcharts:Line Chart
Broken Line / Line Segment in line chart
<html> <head> <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 ww w .j a v a2 s . c om var chart; $(document).ready(function() { chart = new Highcharts.Chart({ chart: { renderTo: 'container' }, //Code for the 'shared' tooltip in Highcharts, not required for HighStock tooltip: { crosshairs: true, shared: true }, series: [{ type: 'line', data: [{x:0,y:0},{x:1,y:1},{x:null,y:null},{x:3,y:1},{x:4,y:0}], } ] }); }); }); </script> </head> <body> <script src="https://code.highcharts.com/highcharts.js"></script> <div id="container" style="min-width: 400px; height: 400px; margin: 0 auto"></div> </body> </html>