echarts中X轴坐标文字太长(改为斜体)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/AinUser/article/details/82665762

//x轴信息样式
            xAxis: {
                type: 'category',
                boundaryGap: false,
                data: ['周一','周二','周三','周四','周五','周六','周日'],
                //坐标轴颜色
                axisLine:{
                    lineStyle:{
                        color:'red'
                    }
                },
                //x轴文字旋转
                axisLabel:{
                    rotate:30,
                    interval:0
                },

            },

效果如下图所示

猜你喜欢

转载自blog.csdn.net/AinUser/article/details/82665762
今日推荐