echarts柱状图柱子宽度
时间: 2023-09-11 15:04:26 浏览: 57
echarts-柱状图
可以通过设置series中的barWidth属性来控制柱子的宽度。barWidth的值可以是具体的像素值,也可以是百分比。例如:
```
option = {
xAxis: {
type: 'category',
data: ['A', 'B', 'C', 'D', 'E']
},
yAxis: {
type: 'value'
},
series: [{
data: [120, 200, 150, 80, 70],
type: 'bar',
barWidth: '30%' // 柱子宽度为30%
}]
};
```
以上代码中,柱子的宽度设置为30%。若要设置具体的像素值,可以将barWidth的值改为具体的像素数值,例如:
```
barWidth: 20 // 柱子宽度为20像素
```
阅读全文