echarts 动画


series: [
    {
        name: '安装数',
        type: 'bar',
        // barWidth: 15,
        // barGap: '-10%',
        data: data.yArray,
        markPoint: {
            data: [
                {name: '最高'},
                {name: '最低'}
            ]
        },
        itemStyle: {
            color: function (params) {
                // build a color map as your need.
                var colorList = [
                    '#00C47B', '#FF894A', '#8782F7', '#24A8BF', '#1CCCB5',
                    '#158EFE', '#68B671', '#FEDB65', '#2CD1C0', '#AE54B5',
                    '#FF80AA', '#F8568C', '#C71848', '#F61B63', '#7ED321'
                ];
                return colorList[params.dataIndex]
            }
        },
        animationDelay: function (idx) {
            return idx * 10 + 100;
        }
    }
],
animationEasing: 'elasticOut',
animationDelayUpdate: function (idx) {
    return idx * 5;
}

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM