Javascript examples for highcharts:Line Chart
formatting x-axis labels in 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 () {/* w w w . j a va 2 s . c o m*/ $('#container').highcharts({ xAxis: { labels: { formatter: function () { // return this.value.toString().substring(0, 2); return Math.round(this.value/10); } } }, series: [{ data: [ [0,13], [15, 29.9], [200, 71.5], [1000, 106.4] ] }] }); }); </script> </head> <body> <script src="https://code.highcharts.com/highcharts.js"></script> <div id="container" style="height: 400px"></div> </body> </html>