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: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
