echarts 设置x轴间隔显示 interval: 1

 var myChart12 = echarts.init(document.getElementById('chart12'));
        option12 = {
            color: ['#63AFF9'],
            xAxis: {
                type: 'category',
                data:["示范区", "禹王台区", "龙亭区", "顺河回族区", "鼓楼区", "祥符区", "杞县", "通许县", "尉氏县","兰考县"],
                axisLabel: {
                    interval: 1  //0:表示全部显示不间隔;auto:表示自动根据刻度个数和宽度自动设置间隔个数


                }
            },
            yAxis: {
                type: 'value',
                name: '家'
            },
            series: [{
                data: [80, 32, 90, 34, 129, 133, 130, 200, 16, 150, 188, 178, 156],
                type: 'line'
            }]
        };
        myChart12.setOption(option12)

上一篇:Flink SQL Window源码全解析


下一篇:mysql Oracle常用时间处理