效果展示:
关键代码
itemStyle: {
normal: {
barBorderRadius:[5, 5 , 0, 0]
}
}
完整代码
option = {
title: {
text: '',
textStyle: {
color: '#000',
fontSize: 14
}
},
tooltip: {},
grid: {
left: '0',
right: '0',
bottom: '0',
containLabel: true
},
xAxis: {
data: ['赵','钱','孙','李'],
axisLine: {
lineStyle: {
color: '#cccccc'
}
},
},
yAxis: {
axisLine: {
lineStyle: {
color: '#cccccc'
}
},
},
series: [{
type: 'bar',
data: [10,30,50,29],
barMaxWidth: 25,
itemStyle: {
normal: {
barBorderRadius:[5, 5 , 0, 0]
}
}
}]
};