Google 可视化数据 Table header 事件

Google visualization Data Table header event

在 google 可视化 table 中单击 header 时我无法触发事件 table。

我在 DataTable 中禁用了排序。

http://jsfiddle.net/xj3ww79n/

google.visualization.events.addListener(table, 'select', function() {
      alert('Hi');
    var row = table.getSelection()[0].row;
    alert('You selected ' + data.getValue(row, 0));
  });
$(".google-visualization-table-tr-head").click(function(){
   alert("You selected the header."); 
});

在此处查看更新后的 fiddle:http://jsfiddle.net/xj3ww79n/2/