Toggle navigation
贯通情况-单位
By
hotboyhaibin
2019-05-29 01:45:06
脚本
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
图表已生成
整理代码
刷新
代码
// Generate data var category = ['市区','万州','江北','南岸','北碚','綦南','长寿','永川','璧山','江津','城口','大足','垫江','丰都','奉节','合川','江津区','开州','南川','彭水','黔江','石柱','铜梁','潼南','巫山','巫溪','武隆','秀山','酉阳','云阳','忠县','川东','检修']; var dottedBase = []; var lineData = [18092,20728,24045,28348,32808 ,36097,39867,44715,48444,50415 ,56061,62677,59521,67560,18092,20728,24045,28348,32808 ,36097,39867,44715,48444,50415,36097,39867,44715,48444,50415 ,50061,32677,49521,32808]; var barData = [4600,5000,5500,6500,7500 ,8500,9900,12500,14000,21500 ,23200,24450,25250,33300,4600,5000,5500,6500,7500 ,8500,9900,22500,14000,21500,8500,9900,12500,14000,21500 ,23200,24450,25250,7500]; var rateData = []; 32808 for (var i = 0; i < 33; i++) { // var date = i+2001; // category.push(date) var rate=barData[i]/lineData[i]; rateData[i] = rate.toFixed(2); } // option option = { title: { text: '增量设备贯通情况-单位', x: 'center', y: 0, textStyle:{ color:'#B4B4B4', fontSize:16, fontWeight:'normal', }, }, backgroundColor: '#191E40', tooltip: { trigger: 'axis', backgroundColor:'rgba(255,255,255,0.1)', axisPointer: { type: 'shadow', label: { show: true, backgroundColor: '#7B7DDC' } } }, legend: { data: ['已贯通', '计划贯通','贯通率',], textStyle: { color: '#B4B4B4' }, top:'7%', }, grid:{ x:'12%', width:'82%', y:'12%', }, xAxis: { data: category, axisLine: { lineStyle: { color: '#B4B4B4' } }, axisTick:{ show:false, }, }, yAxis: [{ splitLine: {show: false}, axisLine: { lineStyle: { color: '#B4B4B4', } }, axisLabel:{ formatter:'{value} ', } }, { splitLine: {show: false}, axisLine: { lineStyle: { color: '#B4B4B4', } }, axisLabel:{ formatter:'{value} ', } }], series: [{ name: '贯通率', type: 'line', smooth: true, showAllSymbol: true, symbol: 'emptyCircle', symbolSize: 8, yAxisIndex: 1, itemStyle: { normal: { color:'#F02FC2'}, }, data: rateData }, { name: '已贯通', type: 'bar', barWidth: 10, itemStyle: { normal: { barBorderRadius: 5, color: new echarts.graphic.LinearGradient( 0, 0, 0, 1, [ {offset: 0, color: '#956FD4'}, {offset: 1, color: '#3EACE5'} ] ) } }, data: barData }, { name: '计划贯通', type: 'bar', barGap: '-100%', barWidth: 10, itemStyle: { normal: { barBorderRadius: 5, color: new echarts.graphic.LinearGradient( 0, 0, 0, 1, [ {offset: 0, color: 'rgba(156,107,211,0.5)'}, {offset: 0.2, color: 'rgba(156,107,211,0.3)'}, {offset: 1, color: 'rgba(156,107,211,0)'} ] ) } }, z: -12, data: lineData }, ] };