echarts 饼图背景图片设置记录

效果

核心代码graphic
在这里插入图片描述

var img = "https://img2.baidu.com/it/u=3231347431,1748721886&fm=253&fmt=auto&app=138&f=JPEG?w=477&h=500"
option = {
    graphic: {
        elements: [
            {
                type: 'image',
                // z: 3,
                style: {
                    image: img,
                    width: 630,
                    height: 700,
                },
                left: 'center',
                top: 'center',
            },
        ],
    },
    tooltip: {
        show: true,
        trigger: 'item',
        axisPointer: {
            type: 'shadow',
        },
    }, //提示框,鼠标悬浮交互时的信息提示
    legend: {
        left: 'center',
        bottom: '0%',
        itemGap: 8,
        itemWidth: 12,
        itemHeight: 12,
    },
    series: [
        {
            name: '中心', //tooltip提示框中显示内容
            type: 'pie', //图形类型,如饼状图,柱状图等
            radius: ['60%', '80%'], //第一项是内半径,第二项是外半径。
            center: ['50%', '50%'],
            color: ['#00ffff', '#dcdcdc'],
            label: {
                show: true,
                position: 'center',
                formatter: ['{a|68%}', '{b|中心}'].join('\n'),
                width: 220,
                height: 220,
                fontSize: 16,
                fontWeight: 'bold',
                backgroundColor: '#ffffff',
                shadowColor: '#e3e3e3',
                shadowBlur: 15,
                borderRadius: 110,
                rich: {
                    a: {
                        padding: [150, 0, 0, 0],
                        color: '#0f0f0f',
                        fontSize: 30,
                        lineHeight: 36,
                    },
                    b: {
                        padding: [200, 10, 0, 0],
                        color: '#c8c8c8',
                        fontSize: 16,
                        lineHeight: 16,
                    },
                },
            },
            labelLine: {
                show: true,
            }, //线条颜色
            data: [
                { value: 1000, name: '调用次数' },
                { value: 680, name: '调用成功数' },
            ], //数据,数据中其他属性,查阅文档
        },
    ],
};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值