echarts地图做tooltip轮播,如何在轮播时相应坐标点样式闪烁提亮--左右有切换按钮

左右切换时有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
            })            
        }        
    })
阅读 3.7k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏