1
我很難得到水平網格線顯示在我的谷歌圖表。谷歌圖表水平網格線與日期時間格式
這是我的hAxis設置。我懷疑它與日期時間格式有關,所以我寫了一個格式化程序。
hAxis: {
title: 'DateTime (UTC)',
slantedText: true,
gridlines: {
count: 30
}
}
var formatter = new google.visualization.DateFormat({pattern: 'yyyy-MM-dd HH:mm:ss'});
formatter.format(data, 0);
Anytbody知道我在做什麼錯?
網站: http://redditsnaps.com/r/dataisbeautiful/top-posts-chart
爲我工作,但還需要一段時間 – juvian 2014-09-28 17:05:31
你的意思是垂直網格線?你沒有看到這些,因爲你的日期實際上不是Date對象 - 它們是字符串。垂直網格線僅在連續軸上受支持,並且字符串會創建離散軸。您應該將日期字符串轉換爲Date對象以獲取要顯示的網格線。 – asgallant 2014-09-30 23:54:16