Toggle navigation
受理案件案值分析
By
沉沦在回忆中
2018-03-12 06:49:27
脚本
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
图表已生成
整理代码
刷新
代码
var data1=[122,150,149,130,142,178,148,180,146,176,113,126,131,169]; option = { backgroundColor:'#fff', legend: { top:'30', data: ['案值金额','没收金额', '罚款金额'] }, grid:{ bottom:'45%', right:'18%', left:'18%', top:'15%' }, title: { text: '受理案件案值分析' }, xAxis: { splitLine: { lineStyle: { show:true, type: 'dashed' } },"axisLabel": { "interval": 0, rotate:40, textStyle:{ fontSize:12, color:'#000' },}, data: ['南宁市', '柳州市', '桂林市', '梧州市', '北海市', '防城港市', '钦州市' ,'贵港市','玉林市','百色市','贺州市','河池市','来宾市','崇左市'] }, yAxis: { name:'万元', max:200, splitLine: { lineStyle: { type: 'dashed' } } }, tooltip: { trigger: 'item', formatter: '{b}
{a}:{c}(万元)' }, series: [{ name:'案值金额', symbolSize: function (data) { return Math.sqrt(data) * 2; }, type: 'scatter', color: new echarts.graphic.RadialGradient(0.4, 0.3, 1, [{ offset: 0, color: 'rgb(164,298, 250)' }, { offset: 1, color: 'rgb(33, 207, 209)' }]), data:data1 },{ name:'罚款金额', symbolSize: function (data) { return Math.sqrt(data) * 2; }, type: 'scatter', color: new echarts.graphic.RadialGradient(0.4, 0.3, 1, [{ offset: 0, color: 'rgb(251, 118, 123)' }, { offset: 1, color: 'rgb(184,134,11)' }]), data:[41,31,40,48,46,41,40,36,38,33,31,35,38,41] },{ name:'没收金额', symbolSize: function (data) { return Math.sqrt(data) * 2; }, type: 'scatter', color: new echarts.graphic.RadialGradient(0.4, 0.3, 1, [{ offset: 0, color: 'rgb(154, 255, 154)' }, { offset: 1, color: 'rgb(0,252, 0)' }]), data:[68,54,78,56,78,61,50,68,60,62,51,65,53,77] }] };