echarts 设置柱状图圆角没反应
时间: 2023-06-29 12:17:36 浏览: 197
Echarts实现柱状图效果
4星 · 用户满意度95%
要设置柱状图圆角,需要在 series -> itemStyle -> normal -> barBorderRadius 中设置,示例代码如下:
```
option = {
// 其他配置项...
series: [{
type: 'bar',
data: [10, 20, 30, 40, 50],
itemStyle: {
normal: {
barBorderRadius: [10, 10, 0, 0] // 设置圆角
}
}
}]
}
```
如果设置后没有反应,可能是因为你的 Echarts 版本过低,需要更新到支持圆角设置的版本。或者是因为在其他地方进行了覆盖设置,需要检查代码。
阅读全文