I am building a chart using highcharts. Values on xaxis are epoch format. When I try to show the values, it comes up as epoch. How would I convert to this to readable format in javascript. This is what I have:
tooltip: {
enabled: true,
formatter: function() {
return '<b>'+ this.series.name +'</b><br/>'+
this.x +': '+ this.y;
}
},