Toggle navigation
清新雷达图
By
我***风
2020-08-04 10:24:22
脚本
16
21
作品使用的第三方脚本
数据管理
上传数据
支持小于 5M 任意格式(csv, xlsx, json, xml, ...)的数据文件
上传后可以通过生成的文件链接异步获取托管的数据。
历史数据
0 条
无历史数据
代码修改记录
信息提示
保存作品
对当前截图不满意?你还可以
上传本地截图
重新截图
作品名称
作品描述
标签
geo
grid
legend
markLine
markPoint
bar
effectScatter
line
lines
map
timeline
title
toolbox
tooltip
visualMap
作品默认版本
最新
16
15
14
13
12
11
10
9
8
7
6
5
4
3
2
1
20:11:45
图表已生成
整理代码
刷新
代码
//indicator中的max可以使用js找数组最大值的方法设定; //data.slice().sort().reverse()[0],用slice()的原因是复制数组,防止原数组次序被改动 option = { tooltip: { trigger:'item' }, radar: { // shape: 'circle', name: { textStyle: { color: '#4D4D4D', fontSize:14, fontWeight:"bold", padding: [3, 5] } }, splitArea:{ show:false }, radius:'70%', center: ['50%', '50%'], indicator: [ { name: '喜欢实体窗口',max:10000}, { name: '自助终端',max:10000}, { name: '代收渠道',max:10000}, { name: '代扣渠道',max:10000}, { name: '支付宝',max:10000}, { name: '微信',max:10000}, { name: '网上国网缴费',max:10000}, { name: '电e宝缴费',max:10000} ] }, series: [{ name: '缴费渠道偏好', type: 'radar', // areaStyle: {normal: {}}, data: [ { value: [2445, 2869, 4643, 4803, 9009, 1644, 3386, 9212], name: '缴费渠道偏好' } ], areaStyle: { color:'rgba(184,232,255,0.8)' }, lineStyle:{ color:'#009EFF', width:2 }, label:{ show:true, position:'top', fontSize:14, color:'#3D8BF0', fontWeight:'bold' }, symbol:"circle", symbolSize:6, showAllSymbol:false, itemStyle:{ color:"white", borderColor:"#00aaff", borderWidth:2 } }] };