饼图-对比色echarts 饼配置项内容和展示

对比色用于突出某数据

配置项如下
      option = {
     backgroundColor: "#ffffff",
    color: ["#0DAFF4", "#0DAFF4", "#0DAFF4", "#FFDB5C"],
    series: [{
        label: {
            normal: {
                position: 'inner'
            }
        },
        type: 'pie',
        center: ['50%', '50%'],
        data: [{
            value: 67,
        }, {
            value: 10,
        },  {
            value: 17,
        }, {
            value: 33,
        }, ],
        itemStyle: {
            normal: {
                borderWidth: 2,
                borderColor: '#ffffff',
            },
        }
    }]
};
    
截图如下