Toggle navigation
区域员工数量与销售额
By
6***6
2019-07-24 12:42:09
脚本
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
图表已生成
整理代码
刷新
代码
app.title = ''; var data = [ [[28604,77,17096869,'江苏1区','一大区'],[31163,77.4,27662440,'江苏2区','一大区'],[1516,79,27662440,'江苏3区','一大区'],[13670,74.7,10582082,'山东1区','一大区'],[28599,75,4986705,'山东2区','一大区'],[29476,77.1,56943299,'北方1区','一大区'],[31476,75.4,78958237,'北方2区','一大区'],[28666,78.1,254830,'北方3区','一大区']], [[44056,81.8,23968973,'四川区域','二大区'],[43294,81.7,35939927,'湖南湖北','二大区'],[13334,76.9,1048943,'广西1区','二大区'],[21291,78.5,11389562,'广西2区','二大区'],[38923,80.8,5503457,'福建区域','二大区'],[37599,81.9,64395345,'广东区域','二大区'],[44053,81.1,80688545,'浙江区域','二大区'],[42182,82.8,329425,'北京区域','二大区']] ]; option = { backgroundColor: new echarts.graphic.RadialGradient(0.3, 0.3, 0.8, [{ offset: 0, color: '#f7f8fa' }, { offset: 1, color: '#cdd0d5' }]), title: { text: '' }, legend: { right: 0, data: ['一大区', '二大区'] }, xAxis: { splitLine: { lineStyle: { type: 'dashed' } } }, yAxis: { splitLine: { lineStyle: { type: 'dashed' } }, scale: true }, series: [{ name: '一大区', data: data[0], type: 'scatter', symbolSize: function (data) { return Math.sqrt(data[2]) / 5e2; }, label: { emphasis: { show: true, formatter: function (param) { return param.data[3]; }, position: 'top' } }, itemStyle: { normal: { shadowBlur: 10, shadowColor: 'rgba(120, 36, 50, 0.5)', shadowOffsetY: 5, color: new echarts.graphic.RadialGradient(0.4, 0.3, 1, [{ offset: 0, color: 'rgb(251, 118, 123)' }, { offset: 1, color: 'rgb(204, 46, 72)' }]) } } }, { name: '二大区', data: data[1], type: 'scatter', symbolSize: function (data) { return Math.sqrt(data[2]) / 5e2; }, label: { emphasis: { show: true, formatter: function (param) { return param.data[3]; }, position: 'top' } }, itemStyle: { normal: { shadowBlur: 10, shadowColor: 'rgba(25, 100, 150, 0.5)', shadowOffsetY: 5, color: new echarts.graphic.RadialGradient(0.4, 0.3, 1, [{ offset: 0, color: 'rgb(129, 227, 238)' }, { offset: 1, color: 'rgb(25, 183, 207)' }]) } } }] };