echarts 三环圆环_echarts环形饼图中间显示总数

本文展示了如何使用echarts库创建一个三环圆环图,并在图表中心显示总金额。通过`setEchartsPie`函数,将数据映射到饼图上,每个扇区代表不同的费用类别,如课程报名、服装收费、物料收费和其它收费。同时,计算并显示了所有费用的总和。
摘要由CSDN通过智能技术生成

function setEchartsPie(id, data) {

let $el = document.getElementById(id);

let myChart = this.echarts.init($el, '', {

width: 450,

height: 300,

});

let dataName = [];

let total = 0;

data.forEach((res) => {

dataName.push(res.name);

total += parseFloat(res.value) * 10000;

});

total = total / 10000;

let option = {

title: {

zlevel: 0,

text: [

'{value|¥' + total + '}',

'{name|总金额}',

].join('\n'),

rich: {

value: {

color: '#303133',

fontSize: 40,

fontWeight: 'bold',

lineHeight: 40,

},

name: {

color: '#909399',

lineHeight: 20

},

},

top: 'center',

left: '145',

textAlign: 'center',

textStyle: {

rich: {

value: {

color: '#303133',

fontSize: 40,

fontWeight: 'bold',

lineHeight: 40,

},

name: {

color: '#909399',

lineHeight: 20

},

},

},

},

tooltip: { // 悬停指示

trigger: 'item',

formatter: "{b}: {c} ({d}%)"

},

legend: {

orient: 'vertical',

x: 'right',

data: dataName,

itemGap: 30,

top: 'middle',

align: 'left',

icon: 'circle',

formatter: function (name) {

return name;

}

},

series: [

{

name: '访问来源',

type: 'pie',

radius: ['80%', '84%'],

center: [150, '50%'],

stillShowZeroSum: false,

avoidLabelOverlap: false,

zlevel: 1,

label: {

normal: {

padding: [30, 30, 30, 30],

backgroundColor: '#fff',

show: false,

position: 'center',

formatter: [

'{value|¥{c}}',

'{name|{b}}'

].join('\n'),

rich: {

value: {

color: '#303133',

fontSize: 40,

fontWeight: 'bold',

lineHeight: 40,

},

name: {

color: '#909399',

lineHeight: 20

},

},

},

emphasis: {

show: true,

textStyle: {

fontSize: '16',

fontWeight: 'bold'

}

}

},

data: data

}

],

color: ['#410ADF','#F42850','#F6A93B','#7ED321','#282828']

};

myChart.setOption(option);

}

setEchartsPie('echart', [

{ value: 300, name: '课程报名' },

{ value: 350, name: '服装收费' },

{ value: 250, name: '物料收费' },

{ value: 100, name: '其它收费' },

]);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值