Toggle navigation
进度条柱形图
By
b***n
2019-11-28 10:45:02
脚本
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 chartData = [{ name: '部门名称1', value: 50, test: '备注1' //自定义参数 }, { name: '部门名称2', value: 60, test: '备注2' }, { name: '部门名称3', value: 66, test: '备注3' }, { name: '部门名称4', value: 72, test: '备注4' }, { name: '部门名称5', value: 80, test: '备注5' }, { name: '部门名称6', value: 88, test: '备注6' }, { name: '部门名称7', value: 96, test: '备注7' }, { name: '部门名称8', value: 100, test: '备注8' } ]; var itemValue = [], bgData = []; //声明背景数据 // 取出所有数据最大值,作为柱形图背景数据 chartData.forEach(function(items, index) { //console.log(items) itemValue.push(items.value); }); maxdata = Math.max.apply(null, itemValue); ///applay方法★取得最大值 //console.log("最大值为 %c"+ maxdata, "color:red"); for (var i = 0; i < chartData.length; i++) { bgData.push(maxdata); //取得最大值 } console.log(bgData); //图表 option = { backgroundColor: '#0d073d', // 背景透明 title: { show: false }, tooltip: { trigger: 'axis', // axis , item axisPointer: { type: 'shadow' // 'line' | 'shadow' }, //backgroundColor:'transparent', padding: 0, textStyle: { fontSize: 16, fontFamily: 'Simsun', color: '#fff' }, formatter: function(params, ticket, callback) { console.log(params[1]) var res = '
' + '
' + '
' + params[1].name + '
' + '
' + '
' + '
数量
' + params[1].value + '
' + '
备注
' + params[1].data.test + '
' + '
' + '
'; setTimeout(function() { callback(ticket, res); // 仅为了模拟异步回调 }, 3000) return res; } }, legend: { show: false }, toolbox: { show: false }, grid: { top: '8%', left: '7%', right: '15%', bottom: '10%', containLabel: true }, xAxis: [{ type: 'value', position: 'bottom', boundaryGap: true, // 边界间隙 min: 0, axisLabel: { show: false, textStyle: { color: '#fff', fontSize: 16 } }, axisLine: { show: false, lineStyle: { color: 'rgba(255, 255, 255, .5)' } }, axisTick: { show: false // 坐标轴小标记 }, splitLine: { show: false, // 是否显示分割线 lineStyle: { color: 'rgba(255, 255, 9255, 0)', // 纵向向网格线颜色 type: 'dashed', width: 1 } } }], yAxis: { type: 'category', position: 'left', axisLabel: { textStyle: { color: '#8aa5ab', fontSize: 15 } }, axisLine: { lineStyle: { color: 'rgba(255, 255, 255, .5)', width: 1 } }, axisTick: { show: false // 坐标轴小标记 }, splitLine: { show: false }, data: (function(data) { var arr = []; data.forEach(function(items) { arr.push(items.name); }); return arr; })(chartData) // 载入y轴数据 }, series: [{ type: 'bar', barGap: "-100%", label: { normal: { show: false } }, barWidth: 27, itemStyle: { normal: { color: '#1a2859' // 图表颜色 } }, data: bgData, // 载入背景数据 z: 0 }, { type: 'bar', label: { normal: { show: true, position: 'right', // top, right, inside, insideTop,... textStyle: { color: 'white', fontSize: 16 }, formatter: '{c}' + "%" /*formatter: function(params) { console.log(params) var strVal = 0; chartData.forEach(function(v, i, array) { if (params.name == v.name) { strVal = v.value; params.data = v.test } }) return strVal + '%'; }*/ } }, barWidth: 27, itemStyle: { normal: { //color:'#ffc938', // 图表颜色 color: function(params) { // 颜色定制显示(按顺序) var colorList = ['#ea9ef3', 'yellowgreen', '#4a5eea', '#00a0e9', '#8957a1', '#80f1b0', '#ff6692', '#f29b76']; return colorList[params.dataIndex] }, //barBorderRadius: [0, 17, 17, 0] //圆角 } }, data: chartData, // 载入数据(内含自定义参数) z: 1 }] }; // 使用刚指定的配置项和数据显示图表 myChart.setOption(option);