1

有没有办法让echarts 顶部的条形变圆?对于本例中的 ex

我能够为极坐标找到选项roundCap ,但找不到简单条形图的任何内容

4

1 回答 1

7

你想设置'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 ]
                }
            }
        }]
    };
于 2020-01-18T07:36:33.733 回答