Google图表 - 在折线图工具提示中格式化日期

时间:2014-03-03 13:08:34

标签: javascript google-visualization

在Google Charts中,有没有办法更改工具提示值的日期格式,而不是将其作为HTML工具提示。例如,默认情况下我得到这个:

tooltip without formatting

但我真正想要的是:

tooltip with formatting

图表代码如下:

data_table = google.visualization.arrayToDataTable(graph_data_raw);
chart = new google.visualization.LineChart(document.getElementById('DivGraph'));
chart.draw(data_table, {
    hAxis: {
        ticks: x_ticks,
        format: 'MMM d, y',
    },
});

1 个答案:

答案 0 :(得分:22)

使用DateFormat

找到解决方案
var date_formatter = new google.visualization.DateFormat({ 
    pattern: "MMM dd, yyyy"
}); 
date_formatter.format(data_table, 0);  // Where 0 is the index of the column