在谷歌图表数据表对象中,我可以使用datatable.getValue(...)
. 但是,如果我想从 X 轴获取时间/日期/年份(见屏幕截图)。我没有找到任何数据表的功能来实现这一点。有谁知道怎么做??
这是我的代码
google.visualization.events.addListener(chart, 'select', function(a, b, c, d) {
var selectedItem = chart.getSelection()[0];
if (selectedItem) {
// Get the current Y-axis value which is 1120
var value = data.getValue(selectedItem.row, selectedItem.column);
alert('The user selected ' + value);
// How I can get the value of 2015 which is the X-axis value??????
}
});