效果图:
核心代码:
const option = {
color: this.color, //前景条的颜色
tooltip: {
show: true,
formatter: '{c}%'
},
grid: {
left: '3%',
right: '4%',
top: 'middle'
},
xAxis: [
{
show: false,
type: 'value',
max: 100 //可以设最大值
}
],
yAxis: [
{
show: false,
type: 'category',
data: ['1'],
axisTick: {
alignWithLabel: true
}
}
],
series: [
// 背景条
{
type: 'bar',
barWidth: 12,
silent: true,
itemStyle: {
normal: { color: '#003363', barBorderRadius: 45 }
},
barGap: '-100%',