Toggle navigation
类型分析
By
0***0
2018-07-04 08:02:05
脚本
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
图表已生成
整理代码
刷新
代码
option = { title: { text: '' }, tooltip: { trigger: 'axis' }, legend: { data:['工作数量','工作比重'] }, grid:{ left: 0, right: 0, containLabel: true }, xAxis: [{ type: 'category', // show:false, axisTick: { show:false, interval:0, alignWithLabel: false }, data: ['办结超时','拒绝','(自)拒绝超时','(自)申请延时','跟踪办理时间超时','回复超时','超时延时','签收超时','核查超时','未及时交办','未及时立项目'] }], yAxis: [{ type: 'value', name: '工作比重', position: 'right', axisLine:{ show: false }, axisTick:{ show: false }, splitLine: { show: true } }, { type: 'value', name: '工作数量', position: 'left', axisLine:{ show: false }, axisTick:{ show: false }, splitLine: { show: true } }], series: [{ name: '工作比重', type: 'line', symbol: 'circle', symbolSize: 10, showAllSymbol: true, label: { normal: { show: false, position: 'top' } }, lineStyle: { normal: { width: 2, color: '#ff2a2a' } }, areaStyle: { normal: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, color: 'rgb(255, 158, 68,.2)' }, { offset: 1, color: 'rgb(255, 70, 131,.1)' }]) } }, data:[0.52,0.34,0.45,0.11,0.54,0.32,0.65,0.12,0.43,0.74,0.2] },{ name: '工作数量', type: 'bar', barWidth: 25, yAxisIndex: 1, label: { normal: { show: true, position: 'top' } }, itemStyle:{ normal:{ color:function(idx) { var color = ['#dc4e54','#db8258','#eda350','#a6a34b','#84aa6d','#84abab']; return color[idx.dataIndex % color.length] } } }, data:[22, 18, 19, 24, 90, 30, 10, 23, 56, 65, 12] }] };