xAxis: [{
type: 'category',
axisTick: {
alignWithLabel: true
},
axisLabel: {
with: 50,
interval: 0, //横轴信息全部显示
// rotate:-15,//-15度角倾斜显示,
fontSize: 10,
//关键是这句
formatter: function (value) {
return value.length > 4 ? value.substring(0, 4) + '...' : value;
}
},
}],
关于echarts图标 label文字过长需要显示...
最新推荐文章于 2024-10-06 15:05:04 发布