雷达图+渐变+图标
const man = [100, 90, 80, 66, 9] const woman = [20, 30, 40, 56, 1] const total = [] man.forEach((item, index) => { let max = item > man[index] ? index : man[index] max = max > 0 ? max * 1.5 : 10 total.push(max) }) const indicator = [ { name: '养老保险', max: total[0], }, { name: '住房公积金', max: total[1], }, { name: '生育保险', max: total[2], }, { name: '工伤保险', max: total[3], }, { name: '医疗保险', max: total[4], }, { name: '失业保险', max: total[5], } ] option = { backgroundColor: '#0B0D13', tooltip: { trigger: 'item', }, // tooltip: { // trigger: 'item', // formatter: function (param) { // let html = '
' + param.seriesName + '(' + param.name + ')
' // indicator.forEach((item, index) => { // html += '
' + item.name + ':' + param.value[index] + '人
' // }) // html += '
' // return html // }, // }, color: ['#068AC3', '#B2782C'], legend: { icon: 'roundRect', // left: '47%', top: '90%', show: true, padding: [3, 5], // right: '50', y: '1', center: 0, itemWidth: 20, itemHeight: 10, itemGap: 26, z: 3, // orient: 'horizontal', data: ['男', '女'], textStyle: { fontSize: 12, color: '#F1F7FF', }, }, radar: { center: ['50%', '50%'], // 外圆的位置 radius: '55%', name: { textStyle: { color: '#fff', fontSize: 15, fontWeight: 400, fontFamily: 'PingFangSC-Regular,PingFang SC', fontStyle: 'italic', }, }, // TODO: indicator: indicator, splitArea: { // 坐标轴在 grid 区域中的分隔区域,默认不显示。 show: true, areaStyle: { // 分隔区域的样式设置。 color: ['#00224A', '#00224A', '#00224A', '#00224A', '#00224A'], // 画布颜色 // 分隔区域颜色。分隔区域会按数组中颜色的顺序依次循环设置颜色。默认是一个深浅的间隔色。 }, }, axisLine: { // 指向外圈文本的分隔线样式 lineStyle: { color: 'rgba(255,255,255,0.2)', }, }, splitLine: { lineStyle: { type: 'solid', color: ['#1781BA', '#1781BA'], // 分隔线颜色 width: 1, // 分隔线线宽 }, }, }, series: [ { type: 'radar', symbolSize: 5, data: [ { // TODO: value: man, name: '男', areaStyle: { normal: { color: { type: 'radial', x: 0.5, y: 0.5, r: 0.5, colorStops: [{ offset: 0, color: 'rgba(46,203,255, 0.14)', // 0% 处的颜色 }, { offset: 0.15, color: 'rgba(46,203,255, 0.14)', // 100% 处的颜色 }, { offset: 0.75, color: '#057FB3', // 100% 处的颜色 }, { offset: 1, color: '#078DC6', // 100% 处的颜色 }], global: false, // 缺省为 false }, }, }, itemStyle: { // 折线拐点标志的样式。 normal: { // 普通状态时的样式 lineStyle: { width: 1, }, opacity: 0.3, }, emphasis: { // 高亮时的样式 lineStyle: { width: 5, }, opacity: 0, }, }, }, { // TODO: value: woman, name: '女', areaStyle: { normal: { color: { type: 'radial', x: 0.5, y: 0.5, r: 0.5, colorStops: [{ offset: 0, color: 'rgba(255, 127,0, 0.14)', // 0% 处的颜色 }, { offset: 0.15, color: 'rgba(255, 127,0, 0.14)', // 100% 处的颜色 }, { offset: 0.75, color: 'rgba(2255, 127,0, 0.4)', // 100% 处的颜色 }, { offset: 1, color: 'rgba(255, 127,0, 0.5)', // 100% 处的颜色 }], global: false, // 缺省为 false }, }, }, itemStyle: { // 折线拐点标志的样式。 normal: { // 普通状态时的样式 lineStyle: { width: 1, }, opacity: 0.3, }, emphasis: { // 高亮时的样式 lineStyle: { width: 5, }, opacity: 0, }, }, } ], } ], }
echarts版本号:5.1.1