Home > Article > Web Front-end > Add click event to echarts pie chart sector - Fannn
Just add this code at the end of echarts
function eConsole(param) { //alert(option.series[0].data.length); //alert(option.series[0].data[i]); //param.dataIndex 获取当前点击索引, //alert(param.dataIndex); clickFunc(param.dataIndex);//执行点击效果 } myChart.on("click", eConsole);
The above is the detailed content of Add click event to echarts pie chart sector - Fannn. For more information, please follow other related articles on the PHP Chinese website!