由于x轴文字过长导致无法完全显示
页面:
代码:
option = {
xAxis: {
type: 'category',
data: ['内一科住院', '外科住院', '妇产科住院', 'ICU', '康复科住院'],
},
yAxis: {
type: 'value',
},
series: [
{
data: [1, 2, 3, 4, 5],
type: 'bar',
color: '#598FFF',
}
]
};
解决办法:
xAxis中加入axisLabel
axisLabel: {
interval: 0,
}
完整代码:
option = {
xAxis: {
type: 'category',
data: ['内一科住院', '外科住院', '妇产科住院', 'ICU', '康复科住院'],
axisLabel: {
interval: 0,
}
},
yAxis: {
type: 'value',
},
series: [
{
data: [1, 2, 3, 4, 5],
type: 'bar',
color: '#598FFF',
}
]
};
效果:
可以正常显示
详细参考https://blog.csdn.net/zch981964/article/details/125508313