There is onClick function in Chart.js documentation, http://www.chartjs.org/docs/#chart-configuration-common-chart-configuration it got called everytime an click on chart occurs, it looks like this:
options: {
onClick: this.Function
}
Function(event, array){
...
}
But then it is passing the entire context and how can I know which specific part of the chart got clicked?