You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@echarts.apache.org by GitBox <gi...@apache.org> on 2019/07/29 03:56:49 UTC

[GitHub] [incubator-echarts] huangyuan9 opened a new issue #10930: radar tooltip 轮循显示无效

huangyuan9 opened a new issue #10930: radar tooltip  轮循显示无效
URL: https://github.com/apache/incubator-echarts/issues/10930
 
 
   setInterval(function () { //使得tootip每隔三秒自动显示
           echarts.dispatchAction({
               type: "downplay",
               seriesIndex: 0,
   
           });
           echarts.dispatchAction({
               type: "highlight",
               seriesIndex: 0,
               dataIndex: faultByHourIndex
           });
           echarts.dispatchAction({
               type: 'showTip', // 根据 tooltip 的配置项显示提示框。
               seriesIndex: 0,
               dataIndex: faultByHourIndex
           });
           faultByHourIndex++;
           if (faultByHourIndex > data.length) {
               faultByHourIndex = 0;
           }
       }, 3000);

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@echarts.apache.org
For additional commands, e-mail: dev-help@echarts.apache.org