如何随着时间的推移为Google Chart的带注释时间轴添加数据?如:
[new Date(2008,1,1),Time(12.2.30),30000,undefined,undefined,40645,undefined,undefined],
official site上没有演示,是否可能?
答案 0 :(得分:2)
Javascript Date对象支持指定小时,分钟,秒和毫秒:
new Date(year, month, day, hours, minutes, seconds, milliseconds);
因此,如果您想在日期中指定一天中的某个时间,则只需添加适当的参数即可。在您的示例中,它将是:
new Date(2008, 1, 1, 12, 2, 30) // 12:02:30 February 1, 2008