0

实例化日期时间类型时是否可以使用文字字符串?(如果不是,跳过)如果是, - 是否需要是 /?如果没关系,请告诉我这有什么问题:

var data = new google.visualization.DataTable({cols:[{label: 'date', type: 'datetime'}, {label: 'power', type: 'number'}], rows: [{c: [ {v:2007/12/01 00:12:00},{v:0}]}, {c: [{v:2007/12/01 01:12:00},{v:101}]}, {c: [{v:2007/12/01 02:12:00},{v:201}]}, {c: [{v:2007/12/01 03:12:00},{v:302 }]}]});

(我已经尝试引用文字日期时间。)-Shawn

4

1 回答 1

0

您可能必须将其放入 Epoch 格式。尝试这样的事情

new Date("#epoch_seconds_go_here");

是可能对您有帮助的链接

于 2012-07-17T18:47:13.837 回答