Echarts实现环状半圆形饼图 系统管理员 2021-07-26 15:21 2482阅读 1赞 **实现效果** ![format_png][] **实现代码** option = { backgroundColor: '#fff', title: { text: "设备告警", textStyle: { color: '#000', fontSize: 32, fontWeight: 'bold' }, left: 'center', top: 100, bottom: '69%', itemGap: 60, }, tooltip: { show: false, }, color: ['#01dadc', '#23cea7', '#5096e0'], legend: { orient: 'vertical', x: 690, y: 120, data: ['危急', '严重', '一般'], }, series: [{ name: '一般', type: 'pie', //起始刻度的角度,默认为 90 度,即圆心的正上方。0 度为圆心的正右方。 startAngle: 0, hoverAnimation: false, tooltip: {}, radius: ["30%", "47%"], center: ['50%', '80%'], label: { normal: { show: false, position: 'center', color: '#fff', formatter: function (params) { return params.value }, }, }, labelLine: { normal: { show: false } }, data: [{ value: 300, itemStyle: { normal: { color: "rgba(80,150,224,0)" } } }, { value: 270, itemStyle: { normal: { color: "rgba(80,150,224,1)" } } }, { value: 30, itemStyle: { normal: { color: "rgba(80,150,224,0.1)" } } }, ] }, { name: '严重', type: 'pie', startAngle: 0, radius: ['50%', '67%'], center: ['50%', '80%'], legendHoverLink: false, hoverAnimation: false, avoidLabelOverlap: false, label: { normal: { show: false, position: 'center' }, emphasis: { show: true, textStyle: { fontSize: '30', fontWeight: 'bold' } } }, labelLine: { normal: { show: false } }, data: [{ value: 300, itemStyle: { normal: { color: "rgba(35,206,167,0)" } } }, { value: 210, itemStyle: { normal: { color: "rgba(35,206,167,1)" } } }, { value: 90, itemStyle: { normal: { color: "rgba(35,206,167,0.1)" } } }, ] }, { name: '危急', type: 'pie', startAngle: 0, hoverAnimation: false, radius: ["70%", "87%"], center: ['50%', '80%'], label: { normal: { show: false, position: 'center' }, emphasis: { show: true, textStyle: { fontSize: '10', fontWeight: 'bold' } } }, labelLine: { normal: { show: false } }, data: [{ value: 300, itemStyle: { normal: { color: "rgba(1,218,220,0)" } } }, { value: 240, itemStyle: { normal: { color: "rgba(1,218,220,1)" } } }, { value: 60, itemStyle: { normal: { color: "rgba(1,218,220,0.1)" } } }, ] } ] }; [format_png]: /images/20210726/bfe515d8f1214fc1b65737dbfce0b1cd.png
相关 使用Echarts实现饼图 效果如图: ![watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L 心已赠人/ 2022年11月21日 04:25/ 0 赞/ 282 阅读
相关 js使用echarts实现饼图报表 //html页面需要的结果 <!-------流量报告------------> <div class="acounts flow-report"> 男娘i/ 2022年07月15日 05:40/ 0 赞/ 262 阅读
相关 ECharts饼图实例 ECharts饼图实例 1、引入jQuery的js文件 2、引入echarts的js文件 test.html页面 <!DOCTYPE html PU 柔情只为你懂/ 2022年06月18日 12:29/ 0 赞/ 398 阅读
相关 echarts环状图 依赖:见echarts柱状图 [http://blog.csdn.net/zk\_1325572803/article/details/78041389][http_blo 冷不防/ 2022年06月08日 08:42/ 0 赞/ 285 阅读
相关 Echarts 制作饼图 继上一篇博文: [Echarts异步加载后端接口返回的Json数据生成图表][Echarts_Json]之后,继续使用它的后端接口数据,制作饼图.方法是一致的. 源码: 偏执的太偏执、/ 2022年05月26日 05:46/ 0 赞/ 328 阅读
相关 echarts饼状图 使用echarts实现个人月消费统计,下面是我写的一个案例: 效果图: ![70][] html代码: <html> <head> <me 川长思鸟来/ 2022年05月14日 01:41/ 0 赞/ 392 阅读
相关 echart生成饼状图 //绘制图表. echarts.init(document.getElementById('main')).setOption(\{ tooltip : \{ tr 女爷i/ 2021年09月29日 09:08/ 0 赞/ 501 阅读
相关 Echarts之饼图 引入jquery.js,echarts.js文件 <script src="js/jquery.js"></script> <script src="js/echa 素颜马尾好姑娘i/ 2021年09月17日 05:30/ 0 赞/ 498 阅读
相关 Echarts实现环状半圆形饼图 实现效果 ![format_png][] 实现代码 option = { backgroundColor: 'fff', titl 系统管理员/ 2021年07月26日 15:21/ 1 赞/ 2483 阅读