Javascript examples for highcharts:Column Chart
with datetime axis labels overlap in column chart
<html> <head> <title>Highcharts Demo</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.7.1.js"></script> <script type="text/javascript"> $(function () {/* w w w .j ava 2 s . c o m*/ var chart = new Highcharts.Chart({ chart: { renderTo: 'container', type: 'column' }, xAxis: { type: 'datetime', labels: { staggerLines: 2 } }, series: [{ data: [ [Date.UTC(2010, 3, 11), 29.9], [Date.UTC(2010, 4, 8), 71.5], ] }] }); }); </script> </head> <body> <script src="https://code.highcharts.com/highcharts.js"></script> <div id="container" style="height: 300px"></div> </body> </html>