更改echarts的柱状图柱子的粗细
时间: 2023-07-22 22:27:57 浏览: 320
echarts 柱状图渐变色背景
5星 · 资源好评率100%
你可以使用echarts中的itemStyle属性来设置柱子的粗细。具体来说,可以通过设置itemStyle属性中的normal属性中的barBorderWidth属性来控制柱子的宽度。例如,以下代码可以将柱子的宽度设置为5:
```
option = {
xAxis: {
data: ['A', 'B', 'C', 'D', 'E']
},
yAxis: {},
series: [{
type: 'bar',
data: [10, 20, 30, 40, 50],
itemStyle: {
normal: {
barBorderWidth: 5
}
}
}]
};
```
你可以根据实际情况调整barBorderWidth的值来控制柱子的宽度。
阅读全文