制作条形圆角echarts

Make bar rounded echarts

有没有办法让echarts中的bar rounded在顶部?例如 this example

我能够为 polar 找到选项 roundCap 但找不到 simple bar[=19] 的任何内容=]图表

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