gpt4 book ai didi

javascript - 制作条形圆形 echarts

转载 作者:行者123 更新时间:2023-12-05 00:46:34 32 4
gpt4 key购买 nike

有没有办法让 echarts 中的条形 rounded 在顶部?对于前 this example

我能够为 polar 找到选项 roundCap,但无法为 simple bar 图表找到任何东西

最佳答案

你想设置'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 ]
}
}
}]
};

关于javascript - 制作条形圆形 echarts,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59798411/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com