occurs when an item is clicked
id | string|number | an id of the clicked item |
ev | Event | a native event object |
trg | string | a target HTML element |
myChart.attachEvent("onItemclick", function (id, ev, trg){
//any custom logic here
});
Back to top