echarts 柱状图渐变色

echarts 柱状图渐变色(基于echart官网中的阶梯瀑布图数据)
设置:itemStyel{ normal{}, emphasis{} } 两个属性

normal为显示样式,emphasis为hover高亮样式

具体效果代码如下:
使用的

option = {
    title: {
        text: '柱状图渐变色',
        // subtext: 'From ExcelHome',
        sublink: 'http://e.weibo.com/1341556070/Aj1J2x5a5'
    },
    tooltip: {
        trigger: 'axis',
        axisPointer: {            // 坐标轴指示器,坐标轴触发有效
            type: 'shadow'        // 默认为直线,可选为:'line' | 'shadow'
        },
        formatter: function (params) {
            var tar;
            if (params[1].value !== '-') {
                tar = params[1];
            }
            else {
                tar = params[0];
            }
            return tar.name + '<br/>' + tar.seriesName + ' : ' + tar.value;
        }
    },
    // legend: {
    //     data: ['支出', '收入']
    // },
    grid: {
        left: '3%',
        right: '4%',
        bottom: '3%',
        containLabel: true
    },
    xAxis: {
        type: 'category',
        splitLine: {show: false},
        data: function () {
            var list = [];
            for (var i = 1; i <= 11; i++) {
                list.push('11月' + i + '日');
            }
            return list;
        }()
    },
    yAxis: {
        type: 'value'
    },
    series: [
        {
            name: '辅助',
            type: 'bar',
            stack: '总量',
            itemStyle: {
                barBorderColor: 'rgba(0,0,0,0)',
                color: 'rgba(0,0,0,0)'
            },
            emphasis: {
                itemStyle: {
                    barBorderColor: 'rgba(0,0,0,0)',
                    color: 'rgba(0,0,0,0)'
                }
            },
            data: [0, 900, 1245, 1530, 1376, 1376, 1511, 1689, 1856, 1495, 1292]
        },
        {
            name: '收入',
            type: 'bar',
            stack: '总量',
            label: {
                // show: true,
                position: 'top'
            },
        itemStyle: {
            normal: {    //显示
                color: new echarts.graphic.LinearGradient(
                    0, 0, 0, 1,
                    [
                        {offset: 0, color: 'rgb(255, 239, 0)'},                  
                        // {offset: 0.7, color: '#44C0C1'},                
                        {offset: 1, color: 'rgb(255, 20, 0)'}                  
                    ]
                )
            },
            emphasis: {   //hover高亮
                color: new echarts.graphic.LinearGradient(
                    0, 0, 0, 1,
                    [
                        {offset: 0, color: 'rgb(255, 239, 0)'},                  
                        // {offset: 0.7, color: '#44C0C1'},                
                        {offset: 1, color: 'rgb(255, 20, 0)'}                   
                    ]
                )
            }
        },
            data: [900, 345, 393, '', '-', 135, 178, 286, '-', '-', '-']
        },
        {
            name: '支出',
            type: 'bar',
            stack: '总量',
            label: {
                // show: true,
                position: 'bottom'
            },
        itemStyle: {
            normal: {    //显示
                color: new echarts.graphic.LinearGradient(
                    0, 0, 0, 1,
                    [
                        {offset: 0, color: 'rgb(255, 20, 0)'},                  
                        // {offset: 0.7, color: '#44C0C1'},                
                        {offset: 1, color: 'rgb(255, 239, 0)'}                  
                    ]
                )
            },
            emphasis: {   //hover高亮
                color: new echarts.graphic.LinearGradient(
                    0, 0, 0, 1,
                    [
                        {offset: 0, color: 'rgb(255, 239, 0)'},                  
                        // {offset: 0.7, color: '#44C0C1'},                
                        {offset: 1, color: 'rgb(255, 20, 0)'}                   
                    ]
                )
            }
        },
            data: ['-', '-', '-', 108, 154, '-', '-', '-', 119, 361, 203]
        }
    ]
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值