根据标准值的不同显示不同的颜色echarts 柱状配置项内容和展示

配置项如下
      let datas = {
    redData: [200, 760, 100, 300],
    data: [100, 960, 200, 400],
    xdata: ['0分钟', '20分钟', '40分钟', '60分钟', '80分钟'],
    leftname: ['A', 'B', 'c', 'D'],
    legend: ["xx","yy"],
};
let fontSize = 18; //字体大小
let textColor = '#fff';
let nameTextColor = '#767d87';
let axisLineColor = '#0b374c';
let splitLineColor = '#0b374c';
let legendData = datas.legend;

let blue = "rgba(53, 196, 224,";
 let green = "rgba(111, 205, 145,";
let itemStyle = {
    normal: {
        color: new echarts.graphic.LinearGradient(0, 0, 1, 0, [{
                offset: 0,
                color: blue + '.01)',
            },
            {
                offset: 1,
                color: blue + '.5)',
            },
        ]),
        borderWidth: 3,
        borderColor: new echarts.graphic.LinearGradient(0, 0, 1, 0, [{
                offset: 0,
                color: blue + '.01)',
            },
            {
                offset: 1,
                color: blue + '1)',
            },
        ])
    },
};
datas.data = datas.data.map((item, index) => {
    if (item < datas.redData[index]) {
        itemStyle = {
            normal: {
                color: new echarts.graphic.LinearGradient(0, 0, 1, 0, [{
                        offset: 0,
                        color: green + '.01)',
                    },
                    {
                        offset: 1,
                        color: green + '.5)',
                    },
                ]),
                borderWidth: 3,
                borderColor: new echarts.graphic.LinearGradient(0, 0, 1, 0, [{
                        offset: 0,
                        color: green + '.01)',
                    },
                    {
                        offset: 1,
                        color: green + '1)',
                    },
                ])
            },
        };
    } else {
        itemStyle = {
            normal: {
                color: new echarts.graphic.LinearGradient(0, 0, 1, 0, [{
                        offset: 0,
                        color: blue + '.01)',
                    },
                    {
                        offset: 1,
                        color: blue + '.5)',
                    },
                ]),
                borderWidth: 3,
                borderColor: new echarts.graphic.LinearGradient(0, 0, 1, 0, [{
                        offset: 0,
                        color: blue + '.01)',
                    },
                    {
                        offset: 1,
                        color: blue + '1)',
                    },
                ])
            },
        };
    }
    return {
        itemStyle,
        value: item
    };
})
console.log(datas.data);
option = {
    backgroundColor: "#000",
      color:["rgba(53, 196, 224,1)", 'rgba(224, 50, 51,1)'],
    tooltip: {
        trigger: 'axis',
        axisPointer: {
            // 坐标轴指示器,坐标轴触发有效
            type: 'shadow', // 默认为直线,可选为:'line' | 'shadow'
        },
        borderWidth: 1,
        borderColor: '#04374f',
        backgroundColor: 'rgba(4,44,63,.6)',
        textStyle: {
            color: '#fff',
            fontSize,
        },
    },
    legend: {
        show: true,
        itemWidth: 20,
        itemHeight: 5,
        icon: 'rect',
        right: '5%',
        textStyle: {
            color: '#FFF',
            fontSize,
        },
        data: legendData,
    },
    grid: {
        left: '3%',
        right: '10%',
        bottom: '3%',
        top: '10%',
        containLabel: true,
    },
    xAxis: {
        name: '',
        nameTextStyle: {
            color: '#fff',
            fontSize,
        },
        type: 'value',
        // max: 60 * 16,
        // splitNumber:13,
        interval: 60,
        axisLabel: {
            color: textColor,
            fontSize,
            // interval: 3,
        },
        splitLine: {
            lineStyle: {
                color: splitLineColor,
            },
        },
        data: datas.xdata,
    },
    yAxis: {
        type: 'category',
        axisLabel: {
            color: textColor,
            fontSize,
        },
        data: datas.leftname,
    },
    series: [{
            name: datas.legend[0],
            type: 'bar',
            barWidth: '40%',
            z: 2,
            label: {
                show: true,
                fontSize,
                position: 'right',
                padding:[0,0,0,-60],
                textStyle: {
                    color: '#fff',
                },
            },
            data: datas.data,
        },
        {
            name: datas.legend[1],
            type: 'bar',
            barWidth: '40%',
            barGap: '-100%',
            z: 1,
            itemStyle: {
                normal: {
                    color: new echarts.graphic.LinearGradient(0, 0, 1, 0, [{
                            offset: 0,
                            color: 'rgba(224, 50, 51,.01)',
                        },
                        {
                            offset: 1,
                            color: 'rgba(101, 33, 44,.5)',
                        },
                    ]),
                    borderWidth: 3,
                    borderColor: new echarts.graphic.LinearGradient(0, 0, 1, 0, [{
                            offset: 0,
                            color: 'rgba(224, 50, 51,.01)',
                        },
                        {
                            offset: 1,
                            color: 'rgba(224, 50, 51,1)',
                        },
                    ]),
                },
            },
            label: {
                show: true,
                fontSize,
                position: 'right',
                textStyle: {
                    color: 'red',
                },
            },
            data: datas.redData,
        },
    ],
};
    
截图如下