可以通过设置barGap属性来调整柱状体之间的距离,负值表示重叠。
例如,如果要让第二个柱状体与第一个柱状体重叠,可以将barGap设置为'-100%':
```
series: [
{
name: '排行',
type: 'bar',
barWidth: 10,
data: [10, 20, 30],
},
{
name: '背景',
type: 'bar',
barWidth: 10,
barGap: '-100%',
itemStyle: {
color: 'rgba(244, 245, 252, 1)',
barBorderRadius: 2,
},
tooltip: {
show: false
},
data: [100, 100, 100],
},
]
```
在上面的例子中,