左右切换时有bug,如何针对对应的点加rippleEffect,请大神指教!
$(".partnernew-page .section7 .btn-l").on("click",function(){
if (index <= 7 && index>=0) {
myChart.dispatchAction({
type: 'showTip',
seriesIndex: 0,
dataIndex: index--
})
myChart.setOption({
series: [{
// symbol: 'image://../../../static/images/partnernew/point2.gif',
itemStyle:{
rippleEffect: {
scale: 4
}
}
}]
})
// myChart.setOption(option, {
// notMerge: true
// });
console.log(myChart.getOption());
}else{
index=6;
myChart.dispatchAction({
type: 'showTip',
seriesIndex: 0,
dataIndex: 7
})
}
})