Toggle navigation
柱状折线图,渐变色,标签垂直排列,
By
A***g
2019-06-17 01:19:37
脚本
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 xData = ['芝罘区','福山区','莱山区','牟平区','海阳市','莱阳市','蓬莱市','栖霞市','龙口市','长岛县','招远市','莱州市','开发区','高新区','昆嵛山','龙海','机场','核电']; var y1Data = [10758,3975,2980,1831,2122,3018,3525,1729,2764,380,3988,2333,3596,453,365,9,67,48]; var y2Data = [28,4.4,5.9,0.9,0.7,1.1,2.1,0.4,1.9,3.8,1.6,0.7,5.7,6.1]; option = { grid: { left: '7%', right: '5%', top: '25%', bottom: '19%', }, title: { show: false }, tooltip : { trigger: 'axis', axisPointer : { // 坐标轴指示器,坐标轴触发有效 type : 'shadow' // 默认为直线,可选为:'line' | 'shadow' } }, legend: { data:['监控数量', '监控密度'], right: '3%', top: '10%', itemWidth: 11, itemHeight: 11, textStyle: { color: '#ffffff', fontSize: 13 } }, toolbox: { show: false, }, xAxis: [ { type: 'category', boundaryGap: true, show: true, axisTick: { show: false }, axisLabel: { fontSize: 15, color: '#d0d0d0', margin: 8, interval:0 , formatter:function(val){ return val.split("").join("\n"); } }, axisLine: { lineStyle: { type: 'solid', color: '#4e608b',//左边线的颜色 width:'1'//坐标线的宽度 } }, data: xData } ], yAxis: [ { type: 'value', scale: true, name: '', axisLine: { show: false }, splitNumber : 4, axisTick: { show: false }, splitLine: { lineStyle: { // 使用深浅的间隔色 color: '#4e608b' } }, axisLabel: { fontSize: 13, color: '#d0d0d0', margin: 12, }, max: 12000, min: 0, boundaryGap: [0.2, 0.2] }, { type: 'value', scale: true, axisLine: { show: false }, splitNumber : 3, axisTick: { show: false }, axisLabel: { fontSize: 13, color: '#d0d0d0', margin: 12, }, splitLine: { lineStyle: { // 使用深浅的间隔色 color: '#4e608b' } }, name: '', max: 30, min: 0, boundaryGap: [0.2, 0.2] }, ], series: [ { name:'监控数量', type:'bar', label: { normal: { show: true, position: 'top', textStyle: { color: '#1dacfe' } } }, itemStyle: { normal: { color: new echarts.graphic.LinearGradient(0, 1, 0, 0, [{ offset: 0, color: "#4889fb" // 0% 处的颜色 }, { offset: 1, color: "#15b3ff" // 100% 处的颜色 }], false) } }, barWidth: '40%', yAxisIndex: 0, data: y1Data }, { name:'监控密度', yAxisIndex: 1, color: '#ffd300', label: { normal: { show: true, position: 'top', textStyle: { color: '#ffd300' } } }, lineStyle: { color: '#ffd300' }, type:'line', data: y2Data } ] };