本文共 714 字,大约阅读时间需要 2 分钟。
效果图:

echarts配置:
option = {    xAxis: {        type: 'category',        data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']    },    yAxis: {        type: 'value'    },    series: [{        data: [120, 200, 150, 80, 70, 110, 130],        type: 'bar',        showBackground: true,        itemStyle: {            normal: {              color: function (params) {                var colorList = [                  '#C1232B', '#B5C334', '#FCCE10', '#E87C25', '#27727B',                  '#FE8463', '#9BCA63', '#FAD860',                ];                return colorList[params.dataIndex]              },            },        },        backgroundStyle: {            color: 'rgba(220, 220, 220, 0.8)'        }    }]};   
转载地址:http://orii.baihongyu.com/