Javascript examples for highcharts:Scatter Chart
Blood Pressure Representation using scatter chart
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.9.1.js"></script> <script type="text/javascript"> $(function () {/*from w w w . j ava2 s .com*/ $('#container').highcharts({ chart: { type: 'scatter' }, series: [{ lineWidth: 1, data: [ [0, 1], [0, 9], [0, null], [1, 13], [1, 9], [1, null], [2, 14], [2, 22], [2, null], [3, 11], [3, 21], [3, null], ] }] }); }); </script> </head> <body> <script src="https://code.highcharts.com/highcharts.js"></script> <script src="https://code.highcharts.com/modules/exporting.js"></script> <div id="container" style="min-width: 310px; height: 400px; max-width: 800px; margin: 0 auto"></div> </body> </html>