Chartjs-Polar Area onclick event

0👍

after mush research i found the answer

var ctx = $("#myChart");
 new Chart(ctx, {
 data: dataset,
 type: 'polarArea',
  options: {      
      'onClick' : function (evt, data) {


                }
            }
   }
});

Leave a comment