$(document).ready(function(){ var chart = new Highcharts.Chart({ chart: { renderTo: 'container' /* display to div Graph*/ }, xAxis: { labels: { rotation: -45, align: 'right', }, categories:["","","","","","","","19:00","20:00","21:00","22:00","23:00","24:00","1:00","2:00","3:00","4:00","5:00","6:00","7:00"]}, series:[], /* array of Data */ remove:function() { return false; }, exporting: { /*--------------------*/ buttons: { /* */ exportButton: { /* Export */ menuItems: null, /* to */ onclick: function() { /* PNG.file */ this.exportChart(); /*--------------------*/ } } } }, plotOptions: { series: { marker: { enabled: false, }, events: { legendItemClick: function(event) { } } } }, }); });