highcharts tooltip wrong date

后端 未结 1 1076
失恋的感觉
失恋的感觉 2021-01-15 17:04

I had made one highchart in that tooltip is shows date and time in format but it is showing wrong date and time.

Please go through the code below.

HTML Code

相关标签:
1条回答
  • 2021-01-15 17:49

    you need to set utc false in global option of highcharts.

     Highcharts.setOptions({
    global: {
        useUTC: false
    }
    });
    

    see Updated fiddle here

    0 讨论(0)
提交回复
热议问题