/**
* 点击事件
*/
myChart2.on('click', function (param) {
var index = param.dataIndex;
alert(index);
});
05-07 15:11