美文网首页
2019-08-07 . tooltip自动轮播

2019-08-07 . tooltip自动轮播

作者: 柴东啊 | 来源:发表于2019-08-07 20:50 被阅读0次

    var index = 0; //播放所在下标

    myChart.dispatchAction({

    type: 'showTip',

    seriesIndex: 0,

    dataIndex: index

    });

    var timerout = setInterval(function() {

        myChart.dispatchAction({

    type: 'showTip',

    seriesIndex: 0,

    dataIndex: index

    });

    index++;

    if(index > data.length) {

    index = 0;

    }

    },1000)

    相关文章

      网友评论

          本文标题:2019-08-07 . tooltip自动轮播

          本文链接:https://www.haomeiwen.com/subject/gdoadctx.html