Toggle navigation
多条数据多种样式循环渲染柱状图
By
p***g
2018-09-06 05:20:08
脚本
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 sourceBar = { "itemData": ["正面表彰类", "中性类", "弄虚作假类", "公平公正类", "突发事件类", "测试类"], "seriesData": [980, 302, 150, 57, 231, 300] } var itemData = sourceBar.itemData; var seriesData = sourceBar.seriesData; var tooltip = sourceBar.tooltip // var backgroundList = ['#0068b7', '#8c97cb', '#aa89bd', '#f6b37f', '#e27e34']; var color = ['#00b9f6', '#38a97d', '#004eff', '#17c7e7', '#4e85ea', '#e49be9', '#078d9d', '#eca52a', '#ef9544', '#ea3b3b'] // var colorArray = [ // [{ // "offset": 0, // "color": "#078d9d" // }, { // "offset": 1, // "color": "#ea3b3b" // }], // [{ // "offset": 0, // "color": "#078d9d" // }, { // "offset": 1, // "color": "#078d9d" // }], // [{ // "offset": 0, // "color": "#4e85ea" // }, { // "offset": 1, // "color": "#4e85ea" // }], // [{ // "offset": 0, // "color": "#004eff" // }, { // "offset": 1, // "color": "#17c7e7" // }], // [{ // "offset": 0, // "color": "#00b9f6" // }, { // "offset": 1, // "color": "#38a97d" // }] // ]; var data = {}; for (var k in itemData) { data[itemData[k]] = seriesData[k]; } var xAxisData = []; var dataArr = []; for (var i in data) { xAxisData.push(i); dataArr.push(data[i]); } option = { backgroundColor: '#142058', grid: { top: '25%', left: '5%', right: '10%', bottom: '8%', containLabel: true }, tooltip: { show: "true", trigger: 'axis', axisPointer: { // 坐标轴指示器,坐标轴触发有效 type: 'shadow', // 默认为直线,可选为:'line' | 'shadow' shadowStyle: { color: 'rgba(112,112,112,0)', }, }, formatter: function(params) { var unit = params[0].name.substring(params[0].name.indexOf('(') + 1, params[0].name.indexOf(')')); return params[0].name + ':' + params[0].value + '条数据'; }, backgroundColor: 'rgba(0,0,0,0.7)', // 背景 padding: [8, 10], //内边距 extraCssText: 'box-shadow: 0 0 3px rgba(255, 255, 255, 0.4);', //添加阴影 }, xAxis: [{ show: true, name: '来源', nameTextStyle: { fontSize: 14, fontFamily: 'Microsoft YaHei', color: '#fff' }, type: 'category', nameLocation: 'end', nameGap: 8, axisLabel: { fontSize: 16, fontFamily: 'Microsoft YaHei', color: "#fff", interval: 0, margin: 16, formatter: function(params) { if (params.length > 6) { params = params.substr(0, 6) + "..."; } else { params = params; } return params; } }, axisLine: { show: true, symbol: ['none', 'arrow'], lineStyle: { color: '#05edfc' } }, data: xAxisData }, { type: 'category', axisLine: { show: false }, axisTick: { show: false }, axisLabel: { show: false }, splitArea: { show: false }, splitLine: { show: false }, data: xAxisData }, { type: 'category', axisLine: { show: false }, axisTick: { show: false }, axisLabel: { show: false }, splitArea: { show: false }, splitLine: { show: false }, data: xAxisData }], yAxis: { type: 'value', name: '数量', nameTextStyle: { fontSize: 14, fontFamily: 'Microsoft YaHei', color: '#fff' }, minInterval: 1, nameLocation: 'end', nameGap: 10, splitLine: { show: false }, axisLabel: { show: true, fontSize: 12, fontFamily: 'Arial', color: "#fff" }, axisLine: { show: true, symbol: ['none', 'arrow'], lineStyle: { color: '#05edfc' } } }, series: [{ type: 'bar', stack: 1, xAxisIndex: 0, barWidth: 10, barGap: 5, z: 2, data: function() { var itemArr = []; for (var i = 1; i < (dataArr.length + 1); i++) { var item = { value: dataArr[i - 1], itemStyle: { normal: { barBorderRadius: 50, color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, color: color[translateColor(i) * 2 - 2] }, { offset: 1, color: color[translateColor(i) * 2 - 1] }]), } } }; itemArr.push(item); } return itemArr; }() }, { type: 'scatter', stack: 1, symbolOffset: [0, 0], //相对于原本位置的偏移量 label: { normal: { show: false, } }, xAxisIndex: 2, symbolSize: 10, z: 2, data: function() { var itemArr = []; for (var i = 1; i < (dataArr.length + 1); i++) { var item = { value: 0, itemStyle: { normal: { borderColor: '#fff', borderWidth: 2, color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, color: color[translateColor(i) * 2 - 2] }, { offset: 1, color: color[translateColor(i) * 2 - 1] }]), } } }; itemArr.push(item); } return itemArr; }() }, { type: 'bar', xAxisIndex: 1, barGap: '140%', data: dataArr, barWidth: 22, itemStyle: { normal: { barBorderRadius: 50, color: '#0e2147' } }, z: 1 }, { type: 'bar', xAxisIndex: 2, barWidth: 30, barGap: 1, z: 0, data: function() { var itemArr = []; for (var i = 1; i < (dataArr.length + 1); i++) { var item = { value: dataArr[i - 1], itemStyle: { normal: { barBorderRadius: 50, color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, color: color[translateColor(i) * 2 - 2] }, { offset: 1, color: color[translateColor(i) * 2 - 1] }]), } } }; itemArr.push(item); } return itemArr; }() }, { type: 'scatter', hoverAnimation: false, xAxisIndex: 2, symbolOffset: [0, 0], //相对于原本位置的偏移量 symbolSize: 30, z: 2, data: function() { var itemArr = []; for (var i = 1; i < (dataArr.length + 1); i++) { var item = { value: 0, itemStyle: { normal: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, color: color[translateColor(i) * 2 - 2] }, { offset: 1, color: color[translateColor(i) * 2 - 1] }]), } } }; itemArr.push(item); } return itemArr; }() } ] }; function translateColor(index) { if (index > 5) { return translateColor(index - 5) } return index }