How to format json data in miliseconds to Date format in highcharts?

前端 未结 2 1702
天涯浪人
天涯浪人 2021-01-25 01:37

I get array of date from json as 1420185600000,1420531200000,1420617600000,1420704000000,1420790400000,1420876800000. How do I format it to show the correct date in the XAxis l

2条回答
  •  自闭症患者
    2021-01-25 01:49

    arrayOfDatesFromJson = arrayOfDatesFromJson.map(function (element) {
      return new Date(element);
    });
    

提交回复
热议问题