echart 柱状图

在这里插入图片描述

  chartOptions4() {
            return {
                grid: {
                    left: 48,
                    right: 12,
                    bottom: 30,
                    top: 40
                },
                tooltip: {
                    trigger: 'axis',
                    confine: true,
                    formatter: params => {
                        let html = ''
                        html += `<div style="font-weight: bold; margin-bottom: 8px;">${params[0].name}</div>`
                        params.forEach(item => {
                            html += `
                                <div>
                                    <div style="display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: ${item.color}; margin-right: 8px;"></div>
                                    <span style="margin-right: 16px;">${item.seriesName}</span>
                                    <span style="float: right;">
                                        <span style="font-weight: bold;">${item.data}</span>
                                        <span>栋</span>
                                    </span>
                                </div>
                            `
                        })
                        return html
                    }
                },

                xAxis: {
                    show: true,
                    type: 'category',
                    data: ['切坡建房', '滑坡崩塌', '泥石流', '地下采空区', '洪涝', '地面沉降', '液化地基', '其他'],
                    axisLine: {
                        show: false
                    },
                    axisTick: {
                        show: false
                    },
                    axisLabel: {
                        color: '#888',
                        interval: 0,
                        fontSize: 14
                    },
                    axisPointer: {
                        type: 'shadow'
                    }
                },
                yAxis: {
                    show: true,
                    type: 'value',
                    name: '栋',
                    axisLine: {
                        show: false
                    },
                    axisTick: {
                        show: false
                    },
                    splitLine: {
                        lineStyle: {
                            color: '#EAF0F7'
                        }
                    },
                    nameTextStyle: {
                        color: '#888',
                        fontSize: 14
                    },
                    axisLabel: {
                        color: '#888',
                        fontSize: 14
                    }
                },
                series: [
                    {
                        data: [120, 200, 150, 80, 70, 110, 130, 230, 30],
                        name: '',
                        type: 'bar',
                        barWidth: '14',
                        barGap: '0.5',
                        itemStyle: {
                            normal: {
                                color: function(params) {
                                    const colorArray = [
                                        {
                                            top: '#3ECC7D',
                                            bottom: '#3EA6CC'
                                        },
                                        {
                                            top: '#488BFF',
                                            bottom: '#7248FF'
                                        },
                                        {
                                            top: '#FD5050',
                                            bottom: '#FDBA50'
                                        },
                                        {
                                            top: '#FAA837',
                                            bottom: '#FFEE69'
                                        },
                                        {
                                            top: '#488BFF',
                                            bottom: '#7248FF'
                                        },
                                        {
                                            top: '#FAA837',
                                            bottom: '#FFEE69'
                                        },
                                        {
                                            top: '#FD5050',
                                            bottom: '#FDBA50'
                                        },

                                        {
                                            top: '#B5BFCC',
                                            bottom: '#5B6066'
                                        },
                                        {
                                            top: '#008000',
                                            bottom: '#98FB98'
                                        },
                                        {
                                            top: '#008000',
                                            bottom: '#98FB98'
                                        }
                                    ]
                                    const num = colorArray.length
                                    return {
                                        type: 'linear',
                                        colorStops: [
                                            {
                                                offset: 0,
                                                color: colorArray[params.dataIndex % num].bottom
                                            },
                                            {
                                                offset: 1,
                                                color: colorArray[params.dataIndex % num].top
                                            }
                                        ]
                                    }
                                },
                                label: {
                                    // 柱图头部显示值
                                    show: true,
                                    position: 'top',
                                    color: '#333',
                                    fontSize: '12px',
                                    formatter: params => {
                                        return params.value[params.encode.x[0]]
                                    }
                                }
                            }
                        }
                    }
                ]
            }
        }
```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

春风得意之时

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值