Javascript examples for highcharts:Chart Data
datalabel Spacing Issue in line 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 ava 2 s .c o m*/ Highcharts.setOptions({ lang: { thousandsSep: '' } }); $('#container').highcharts({ series: [{ dataLabels: { enabled: true }, data: [3000, 5000] }] }); }); </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; margin: 0 auto"></div> </body> </html>