Highcharts x-axis datetime issue
问题 in my javascript I defined how to populate a LineChart of Highcharts . This is populated with the data given by a database. The x-axis of the chart is of datetime type and the x-value is DateTime type. xAxis: { type: 'datetime', labels: { formatter: function () { return Highcharts.dateFormat('%d %b - %H:%M:%S', this.value); } } }, lineCharts[index].series[roiIndex].addPoint([point.creationDateTime, point.result]); but what I see is the following: I can't find the solution..does anyone have an