Looking for a method to add the onClick handle of the "label" element in chartjs 2.0 since using the method below returns "unifined" in console.log whenever you click on any of the label attributes in Char.js V2.0 RadarChart.
var data = { // below line is the labels labels: ["Eating", "Drinking", "Sleeping", "Designing", "Coding", "Cycling", "Running"], datasets: [ { label: "My First dataset", //this only shows as legend, not label. backgroundColor: "rgba(179,181,198,0.2)", borderColor: "rgba(179,181,198,1)", pointBackgroundColor: "rgba(179,181,198,1)", pointBorderColor: "#fff", pointHoverBackgroundColor: "#fff", pointHoverBorderColor: "rgba(179,181,198,1)", data: [65, 59, 90, 81, 56, 55, 40] }, ....