highcharts datetime axis, how to comput correct timestamp?

时光总嘲笑我的痴心妄想 提交于 2019-12-11 05:55:13

问题


Let say I want to draw a series where the first point represents the time 11:30 of november 5 2013. I want the time 11:30 to be the same if I look my chart with a browser in a different timezone. Hence I want useUTC=true. Now, how do I compute the value (milliseconds) to give to highcharts?

I tried with this python code:

>>> import datetime,time
>>> t=datetime.datetime(2013,11,5,11,30,00)
>>> time.mktime(t.timetuple())*1000
1383647400000.0

But if I plug the value 1383647400000.0 in highcharts I obtain a point with time 10:30 instead of 11:30.

Here is a the code reproducing the malfunctioning: http://jsfiddle.net/2BffA/6/

What am I doing wrong?


回答1:


The problem was in the python code... The correct way to construct a UTC timestamp for 11:30 november 5, 2013 is

>>> import datetime, calendar
>>> t=datetime.datetime(2013,11,5,11,30,00)
>>> calendar.timegm(t.utctimetuple())*1000.0 + t.microsecond * 0.0011383651000000.0
1383651000000.0

which is the correct timestamp to send to highcharts if useUTC=true



来源:https://stackoverflow.com/questions/19817475/highcharts-datetime-axis-how-to-comput-correct-timestamp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!