Google需要图表的javascript日期时间格式是什么?

时间:2014-06-24 07:00:24

标签: javascript datetime google-visualization

我正在使用谷歌图表,我尝试了很多日期格式,但没有任何工作。我已准备好使用时刻格式功能,但我需要日期时间的谷歌日期格式。

谢谢!

2 个答案:

答案 0 :(得分:2)

" datetime"数据类型需要javascript Date object,例如:

var data = new google.visualization.DataTable();
data.addColumn('datetime', 'Date and time');
data.addRow([new Date(2014, 5, 24, 11, 35, 24)]); // June 24 2014 11:35:24

如果您正在寻找DateFormat模式的规范,他们会使用ICU Date Format pattern set的子集。

答案 1 :(得分:1)

您想从Google使用哪种图表? 看看它有一些示例代码,你也可以在“Visualization Playground”中玩游戏

https://developers.google.com/chart/interactive/docs/gallery/annotatedtimeline https://code.google.com/apis/ajax/playground/?type=visualization#annotated_time_line

在该示例中,他们使用的是Javascript Date对象。 还有一个关于日期格式(日期或日期时间)的部分: https://developers.google.com/chart/interactive/docs/gallery/annotatedtimeline#Data_Format