fires on clicking a legend item
| ev | object | a native click event object |
| seriesIndex | string | id of the legend item (series index) |
| node | object | an html element |
myChart.attachEvent("onLegendClick",function(ev, seriesIndex, node){
// your code
});
Back to top