echarts X轴固定在上方

时间:2024-04-05 16:09:53

option = {
    xAxis: {
        position: 'top',
        type: 'category',
        data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
        axisLine: {
            onZero: false
        }
    },
    yAxis: {
        inverse: true,
        type: 'value'
    },
    series: [{
        data: [100, 300, 500, 700, 290, 630, 520],
        type: 'bar'
    }]
};

效果图: 测试地址:http://echarts.baidu.com/examples/editor.html?c=bar-polar-stack

echarts X轴固定在上方