I am trying to display dateTime in day/weekly/month format on the x axis of high charts I have the data formatted as x utc date time format and y (magnitude). I was under the im
You can try format date with
xAxis: { labels: { formatter: function(){ return moment(new Date(this.value)).format('DD'); // example for moment.js date library //return this.value; }, },
Also you can check documentation http://api.highcharts.com/highcharts/xAxis.labels.formatter