1. 解决Echarts柱状图X轴数据隔一个显示
xAxis: {
type: 'category',
data: ['攻击模式', '应对措施', '入侵集合'],
axisPointer: {
type: 'shadow'
},
axisLabel: {
interval: 0 //设置间隔为0
}
}
2. x 轴文字倾斜显示
xAxis: {
type: 'category',
data: ['攻击模式', '应对措施', '入侵集合'],
axisPointer: {
type: 'shadow'
},
axisLabel: {
rotate: 45, //代表逆时针旋转
}
}