赞
踩
假设有以下图表:
用来显示洗碗和洗筷子的遍数,并判断有没有合格
合格标准:4-8遍
低于4遍或高于8遍都不合格。
series: [ { name: '洗碗遍数', type: 'bar', data: [4, 2, 5, 5, 6, 5, 7, 8], label: { show: true, position: 'top', formatter: function (params) { let val = params.data; if(val<4){ return '{ng|' + val+'}'; //模板语句,固定写法,表示ng|后面的数组使用rich里面的ng样式 }else if(val>8){ return '{ng|' + val+'}'; }else{ return '{pass|' + val+'}'; } }, rich: { pass: { color: 'green', }, ng: { color: 'red', fontSize:16 } } } }, { name: '洗筷子遍数', type: 'bar', data: [5, 5, 6, 5, 7, 5, 4, 7], label: { show: true, position: 'top', formatter: function (params) { let val = params.data; if(val<4){ return '{ng|' + val+'}'; }else if(val>8){ return '{ng|' + val+'}'; }else{ return '{pass|' + val+'}'; } }, rich: { pass: { color: 'green', }, ng: { color: 'red', fontSize:16 } } } }, { name: '合格', type: 'line' }, { name: '不合格', type: 'line' } ]
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。