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:{
barBorderRadius:100
}
}]
};
barBorderRadius is used to set the fillet radius. What is the range of this value? Why is it ineffective to continue to increase after increasing to a certain extent?