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