有没有办法让echarts 顶部的条形变圆?对于本例中的 ex
我能够为极坐标找到选项roundCap ,但找不到简单条形图的任何内容
有没有办法让echarts 顶部的条形变圆?对于本例中的 ex
我能够为极坐标找到选项roundCap ,但找不到简单条形图的任何内容
你想设置'border-radius'吗?
var option = {
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: [{
data: [120, 200, 150, 80, 70, 110, 130],
type: 'bar',
itemStyle: {
emphasis: {
barBorderRadius: [50, 50]
},
normal: {
barBorderRadius: [50, 50, 0 ,0 ]
}
}
}]
};