white border of echarts pie chart

insert image description here

  • Implement the white edge of echarts
    insert image description here
  itemStyle: {
    
    
          normal: {
    
    
            borderRadius: 2,
            borderColor: 'rgba(255, 255, 255, 1 )',
            borderWidth: 1,
            color: function(params) {
    
    
              return colorList[params.dataIndex]
            }
          }
        },
  • The demo address of echarts https://www.makeapie.com/editor.html?c=xVuZgtOXUA

Guess you like

Origin blog.csdn.net/weixin_43794749/article/details/121428261