销售员销量排行

描述:当前是关于Echarts图表中的 柱状图 示例。
 
            option = {
            color: ['#333'],
            backgroundColor: '#fff',
            tooltip: {
                trigger: 'axis',
                axisPointer: {
                    type: 'shadow'
                },
                formatter: function (objs, index) {
                    let obj = objs[0];
                    return `${obj.name}<br/>${obj.marker}${obj.seriesName} : ${obj.value} 个`;
                },
            },
            grid: {
                top: '3%',
                left: '3%',
                right: '2%',
                bottom: '3%',
                containLabel: true,

            },
            xAxis: {
                type: 'value',
                boundaryGap: [0, 0.01],
                data: [0, 20, 40, 60, 80, 100],
                interval: 20,
                min: 0,
                max: 100,
                splitLine: {
                    lineStyle: {
                        type: 'solid'
                    }
                },
                axisLine: {
                    show: false,
                    lineStyle: {
                        color: '#999',

                    }
                },
                axisLabel: {
                    formatter: function (value, index) {
                        return value;
                    },
                    color: '#333'
                },
                axisTick: {
                    show: false,
                }
            },
            yAxis: {
                type: 'category',
                boundaryGap: true,
                splitArea: {
                    areaStyle: {
                        opacity: 0
                    }
                },
                axisLine: {
                    lineStyle: {
                        color: '#909396',

                    }
                },
                data: ['张三三', '李四四', '王五五','赵六六','张三','李四','王五','赵六','张三三','李四四'
                ]
            },
            series: [
                {
                    name: '销售量',
                    barMaxWidth: '40%',
                    type: 'bar',
                    label: {
                        normal: {
                            show: true,
                            position: 'right',
                            formatter: '{c}',
                            textStyle: {
                                color: '#333'
                            }
                        }
                    },
                    data: [
                        {
                            value: 10,
                            itemStyle: {
                                color: '#cf9ef1',
                            }
                        },
                        {
                            value: 20,
                            itemStyle: {
                                color: '#57e7ec',
                            }
                        },
                        {
                            value: 40,
                            itemStyle: {
                                color: '#fdb301',
                            }
                        },
                        {
                            value: 30,
                            itemStyle: {
                                color: '#f59a8f',
                            }
                        },
                        {
                            value: 40,
                            itemStyle: {
                                color: '#fca4bb',
                            }
                        },
                        {
                            value: 50,
                            itemStyle: {
                                color: '#2b908f',
                            }
                        },
                        {
                            value: 60,
                            itemStyle: {
                                color: '#90ed7d',
                            }
                        },
                        {
                            value: 70,
                            itemStyle: {
                                color: '#e75fc3',
                            }
                        },
                        {
                            value: 80,
                            itemStyle: {
                                color: '#5085f2',
                            }
                        },
                        {
                            value: 90,
                            itemStyle: {
                                color: '#8d7fec',
                            }
                        },
                    ]
                },

            ]
        };