如何在Google注释时间轴中显示毫秒数?

时间:2009-07-15 20:58:28

标签: google-visualization

是否可以帮助我使用Google Visualization API的dateFormat说明符,以便显示毫秒数。

提前致谢!

1 个答案:

答案 0 :(得分:0)

要在javascript中设置Date实例的毫秒数,请使用setMilliseconds()方法:

x = new Date(2009, 7, 6, 20, 10, 10);
x.setMilliseconds(10);

我怀疑Google Annotated Timeline会以毫秒为单位显示值。