自动播放排名echarts 柱状配置项内容和展示

配置项如下
      option = {
    timeline: {
        data: ['9月1日', '9月2日', '9月3日', '9月4日', '9月5日', '9月6日', '9月7日', '9月8日', '9月9日', '9月10日'],
        axisType: 'category',
        show: true,
        autoPlay: true,
        playInterval: 1000,
        checkpointStyle: {
            color: '#04a5f1',
            borderColor: 'rgba(4, 165, 261, .5)'
        },
        itemStyle: {
            normal: {
                color: '#04a5f1'
            },
            emphasis: {
                color: '#04a5f1'
            }
        },
        lineStyle: {
            color: '#ddd'
        },
    },
    options: [{
        title: {
            'text': '部门排名',
        },
        tooltip: {
            'trigger': 'axis'
        },
        legend: {
            "show": true,
            x: 'left',
            'data': ['上客量'],
            'selected': {
                '上客量': true,
            }
        },
        calculable: true,
        grid: {
            'y': 80,
            'y2': 100
        },
        xAxis: [{
            'type': 'category',
            'axisLabel': {
                'interval': 0
            },
            'data': [
                '市场监管局', ' 卫计委', '环保局', '民宗委', '人保局', '文广局', '规土局', '发改局'
            ]
        }],
        yAxis: [{
            'type': 'value',
            'name': '部门排名',
            'max': 200
        }, {
            'type': 'value',
        }],
        series: [{
            'name': '效能指数',
            'yAxisIndex': 1,
            'type': 'bar',
            'data': [5, 6, 8, 28, 8, 24, 11, 16],
            itemStyle: {
                normal: {
                    color: new echarts.graphic.LinearGradient(
                        0, 1, 0, 0, [{
                            offset: 0,
                            color: '#2af598'
                        }, {
                            offset: 1,
                            color: '#009efd'
                        }]
                    ),
                    barBorderRadius: 4
                },
                emphasis: {
                    color: new echarts.graphic.LinearGradient(
                        0, 1, 0, 0, [{
                            offset: 0,
                            color: '#2af598'
                        }, {
                            offset: 1,
                            color: '#009efd'
                        }]
                    ),
                    barBorderRadius: 4
                }
            },
            label: {
                normal: {
                    show: true,
                    position: 'top',
                    formatter: '{c}'
                }
            },
        }]
    }, {
        title: {
            'text': '9月2日'
        },
        series: [{
            'data': [45, 43, 64, 134, 188, 43, 109, 12]
        }]
    }, {
        title: {
            'text': '9月3日'
        },
        series: [{
            'data': [110, 32, 111, 176, 73, 59, 181, 9]
        }]
    }, {
        title: {
            'text': '9月4日'
        },
        series: [{
            'data': [94, 37, 64, 55, 56, 41, 70, 17]
        }]
    }, {
        title: {
            'text': '9月5日'
        },
        series: [{
            'data': [5, 6, 5, 28, 8, 24, 11, 16]
        }]
    }, {
        title: {
            'text': '9月6日'
        },
        series: [{
            'data': [45, 34, 64, 134, 188, 43, 109, 12]
        }]
    }, {
        title: {
            'text': '9月7日'
        },
        series: [{
            'data': [5, 6, 34, 28, 8, 24, 11, 16]
        }]
    }, {
        title: {
            'text': '9月8日'
        },
        series: [{
            'data': [94, 37, 64, 55, 56, 41, 70, 17]
        }]
    }, {
        title: {
            'text': '9月9日'
        },
        series: [{
            'data': [45, 40, 64, 134, 188, 43, 109, 12]
        }]
    }, {
        title: {
            'text': '9月10日'
        },
        series: [{
            'data': [5, 6, 10, 28, 8, 24, 11, 16]
        }]
    }, ]
};
    
截图如下