【发布时间】:2020-01-18 07:21:40
【问题描述】:
有没有办法让 echarts 中的条形 rounded 在顶部?前this example
我能够为 polar 找到选项 roundCap,但无法为 simple bar 图表找到任何东西
【问题讨论】:
标签: javascript echarts baidu ngecharts
有没有办法让 echarts 中的条形 rounded 在顶部?前this example
我能够为 polar 找到选项 roundCap,但无法为 simple bar 图表找到任何东西
【问题讨论】:
标签: javascript echarts baidu ngecharts
你想设置'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 ]
}
}
}]
};
【讨论】: