sorry for the old code i didn't see the documentation may be you can find more userfull in the doc, i did on old school mode :).
Position based on client with height :
canvas.onclick = function(evt){
alert(evt.pageX, evt.pageY)
};
Position based on Charts :
var config = {}; //different (data, datasets, tooltips ...)
var ctx = document.getElementById("canvas").getContext("2d");
var Charts= new Chart.Scatter(ctx, config);
canvas.onclick = function(evt){
var activePoints = Charts.getElementsAtEvent(evt);
var firstPoint = activePoints[0];
if(firstPoint !== undefined){
var label = Charts.data.labels[firstPoint._index];
var value = Charts.data.datasets[firstPoint._datasetIndex].data[firstPoint._index];
alert(label + ": " + value.x);
alert(label + ": " + value.y);
}
};
Taken from there :) Click events on Pie Charts in Chart.js thanks for him.
Regards.