Greetings,
I am trying to add a function to the onClick listener on Chart JS labels. The function exists as soon as it hits the call to the DB. I get nothing back and the rest of the code does not execute. So the click executes on the front end calls to a function in a js file that should then talk to the DB. This is my code to incorporate the function to the chart js onClick.
legend:{
position:'bottom',
onClick: function(e, legendItem) {
Poll.findById('58e20fbea059d106a74ff2e6',function(err,docs){
if(err) console.error(err);
var index = legendItem.index;
var ci = this.chart;
ci.data.datasets[0].data[index] +=1;
ci.update();
});
}
}```
Is it not possible to access the DB from the db without post calls?