要调整柱状图距离文字的距离,可以通过`axisLabel.margin`属性来控制。例如,将`margin`值设置为60,可以让柱状图距离文字远一点:
```
yAxis: [
{
type: 'category',
inverse: true,
axisLine: {
show: false,
},
axisTick: {
show: false,
},
axisPointer: {
label: {
show: true,
margin: 30,
},
},
data: dataList.map((item) => item.name),
axisLabel: {
margin: 60, // 调整柱状图距离文字的距离
fontSize: 14,
align: 'left',
color: '#31373D',
rich: {
// ...
},
formatter: function (params) {
// ...
},
},
},
// ...
],
```
在上面的例子中,将`margin`值设置为60,使得柱状图距离文字远了一点。你可以根据实际情况调整这个值。