餐E评echarts

所需要的数据结构

option = {

    num:1212,//商圈数

    numRate:34%,//商圈增长率

    activation:1231,//活跃度

    activationRate:23%,//活跃度增长

    legend:['全市平均','酒仙桥'],

    series : [{

          data:[120, 118, 130]

      },

    {

          data:[120, 118, 130]

      },

  ]

}

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<script src="https://cdn.bootcss.com/echarts/3.7.1/echarts.js"></script>
</head>
<body>
	<div id="app" style="height: 400px;">	
	</div>
	<script>
		var ec = echarts.init(document.querySelector('#app'));
		var option = {
		    title: {
		        text: '自定义雷达图'
		    },
		    legend: {
		    	data: ['全市平均','酒仙桥'],
		        right: '5%'
		    },
		    radar: [
		        {
		            indicator: [
		                { text: '环境', max: 150 },
		                
		                { text: '口味', max: 150 },
		                
		                { text: '服务', max: 150 }
		            ],
		            center: ['75%', '50%'],
		            radius: 120
		        }
		    ],
		    series: [
		        {
		            name: '成绩单',
		            type: 'radar',
		            data: [
		                {
		                    value: [120, 118, 130],
		                    name: '全市平均',
		                    itemStyle : {
		                      normal:{
		                        color:'#9BDADC'
		                      }
		                    },
		                    label: {
		                        normal: {
		                            show: true,
		                            formatter:function(params) {
		                                return params.value;
		                            }
		                        }
		                    },
		                    areaStyle: {
		                        normal: {
		                            opacity: 0.9,
		                            color: new echarts.graphic.RadialGradient(0.5, 0.5, 1, [
		                                {
		                                    color: '#9BDADC',
		                                    offset: 0
		                                },
		                                {
		                                    color: '#9BDADC',
		                                    offset: 1
		                                }
		                            ])
		                        }
		                    }
		                },
		                {
		                    value: [90, 90, 100],
		                    name: '酒仙桥',
		                    itemStyle : {
		                      normal:{
		                        color:'#B3D3E2'
		                      }
		                    },
		                    areaStyle: {
		                        normal: {
		                            opacity: 0.9,
		                            color: new echarts.graphic.RadialGradient(0.5, 0.5, 1, [
		                                {
		                                    color: '#B3D3E2',
		                                    offset: 0
		                                },
		                                {
		                                    color: '#B3D3E2',
		                                    offset: 1
		                                }
		                            ])
		                        }
		                    }
		                }
		            ]
		        }
		    ]
		}
		ec.setOption(option);
	</script>
</body>
</html>

  

转载于:https://www.cnblogs.com/coding4/p/7543661.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值