您当前的位置: 首页 >  ar

杨林伟

暂无认证

  • 0浏览

    0关注

    3337博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

110Echarts - 雷达图(Customized Radar Chart)

杨林伟 发布时间:2019-05-05 10:58:19 ,浏览量:0

效果图

在这里插入图片描述

源代码



	
		
		ECharts
		
		
	

	
		
		
// 基于准备好的dom,初始化echarts实例 var myChart = echarts.init(document.getElementById('main')); var option; option = { title: { text: '自定义雷达图' }, legend: { data: ['图一', '图二', '张三', '李四'] }, radar: [{ indicator: [{ text: '指标一' }, { text: '指标二' }, { text: '指标三' }, { text: '指标四' }, { text: '指标五' } ], center: ['25%', '50%'], radius: 120, startAngle: 90, splitNumber: 4, shape: 'circle', name: { formatter: '【{value}】', textStyle: { color: '#72ACD1' } }, splitArea: { areaStyle: { color: ['rgba(114, 172, 209, 0.2)', 'rgba(114, 172, 209, 0.4)', 'rgba(114, 172, 209, 0.6)', 'rgba(114, 172, 209, 0.8)', 'rgba(114, 172, 209, 1)' ], shadowColor: 'rgba(0, 0, 0, 0.3)', shadowBlur: 10 } }, axisLine: { lineStyle: { color: 'rgba(255, 255, 255, 0.5)' } }, splitLine: { lineStyle: { color: 'rgba(255, 255, 255, 0.5)' } } }, { indicator: [{ text: '语文', max: 150 }, { text: '数学', max: 150 }, { text: '英语', max: 150 }, { text: '物理', max: 120 }, { text: '化学', max: 108 }, { text: '生物', max: 72 } ], center: ['75%', '50%'], radius: 120 } ], series: [{ name: '雷达图', type: 'radar', itemStyle: { emphasis: { // color: 各异, lineStyle: { width: 4 } } }, data: [{ value: [100, 8, 0.40, -80, 2000], name: '图一', symbol: 'rect', symbolSize: 5, lineStyle: { normal: { type: 'dashed' } } }, { value: [60, 5, 0.30, -100, 1500], name: '图二', areaStyle: { normal: { color: 'rgba(255, 255, 255, 0.5)' } } } ] }, { name: '成绩单', type: 'radar', radarIndex: 1, data: [{ value: [120, 118, 130, 100, 99, 70], name: '张三', label: { normal: { show: true, formatter: function(params) { return params.value; } } } }, { value: [90, 113, 140, 30, 70, 60], name: '李四', areaStyle: { normal: { opacity: 0.9, color: new echarts.graphic.RadialGradient(0.5, 0.5, 1, [{ color: '#B8D3E4', offset: 0 }, { color: '#72ACD1', offset: 1 } ]) } } } ] } ] } myChart.setOption(option);
关注
打赏
1662376985
查看更多评论
立即登录/注册

微信扫码登录

0.2727s