我在网上弄了一个进度条的样式,代码如下,但是现在的数据都是写死的,如果想要跟随着自助结果集的数据变动的话,那两个数据的地方要用什么代替呢?代替的地方已经标红.
option = {
backgroundColor:"#fff",
grid: {
top: '15%',
left: '4%',
right: '25%',
bottom: '13%'
},
tooltip: {
show: false
},
xAxis: {
type: 'value',
min: 0,
max:1,
axisLine: {
show: false,
lineStyle: {
color: '#ffffff',
width: 1
},
},
splitLine: {
show: false,
lineStyle: {
color: 'rgba(49,135,243,0.3)'
}
},
axisLabel: {
show: false,
},
axisTick: {
show: false,
}
},
yAxis: {
//show: false,
type: 'category',
inverse:true,
splitLine: {
show: false,
},
axisLine: {
show: false
},
axisLabel: {
show: true,
interval: 0,
margin: 0,
align: 'left',
padding: [-50, 0, 0, 0],
textStyle: {
color: '#ffffff',
fontSize: 16
}
},
axisTick: {
show: false
},
data : []
},
series: [{
//真实数值条形图
name: "真实值",
type: 'bar', //pictorialBar
barWidth: 20,
itemStyle: {
normal: {
borderWidth: 0,
color: 'rgb(46,130,242)'
},
barBorderRadius: 10
},
label: {
show: false,
},
data : [0.9265],
z: 0
}, {
//辅助方格图形
name: "辅助值",
type: 'pictorialBar',
barWidth: 20,
symbol: 'rect',
symbolRepeat: 'true',
symbolMargin: 10,
symbolSize: ['20%', '100%'],
symbolOffset: ['120%', '0%'],
// symbolRepeat: true,
itemStyle: {
normal: {
color: '#fff'
},
barBorderRadius: 10
},
label: {
normal: {
color: '#000',
show: true,
position: ['100%', '10%'],
fontSize: 16,
formatter: function(params) {
//console.info(params);
return ' ' + ([0.9265][params.dataIndex]*100).toFixed(2) + '%';//这里的0.9265是从结果集中取出后代替
}
}
},
data : [1],
z: 1
},{
//辅助背景图形
name: "背景条",
type: 'bar', //pictorialBar
barWidth: 20,
barGap : '-100%',
itemStyle: {
normal: {
borderWidth: 0,
color: 'rgb(91,168,248)',
opacity:0.2
},
barBorderRadius: 10
},
data : [1],
z: 0
},]
};
|