在 Timeline Highcharts 中显示 TIME 而不是 DATE

Show TIME instead of DATE in Timeline Highcharts

目前我的时间线图表是这样的。

我希望把那里的日期改成现在的时间。有可能实现吗?

Here my code.

您可以在 dataLabels 设置中调整日期格式以显示时间而不是像这样的日期

   dataLabels: {
     allowOverlap: false,
     format:
       '<span style="color:{point.color}">● </span><span style="font- 
       weight: bold;" > ' +
       "{point.x:%H:%M:%S}</span><br/>{point.label}"
   }

日期格式参考:https://api.highcharts.com/class-reference/Highcharts.Time#dateFormat