How can I catch a click event in the whole chart and not just on elements of the chart?
Right now I have this:
google.visualization.events.addListener(chart,'select',callbackFunction);
But that just adds a listener for the items/elements of the charts. If, for example, in a column chart I click not on a column but on the xAxis, no event is triggered. I tried adding an onclick on the container of the chart, but that just will trigger if you click on the outter part of the chart.
So my question is: How can I add a listener for the whole chart? Not just the elements on it.