实现方法:
在y轴配置中定义:
yAxis: {
type: 'value',
// max: '1200',
axisLine: {
show: false,
lineStyle: {
color: 'white'
}
},
axisTick: {
show: false// 去除刻度
},
splitLine: {
show: true,
lineStyle: {
color: '#203557'
}
},
triggerEvent: true,
axisLabel: {
formatter: param => {
var template = param .toString()//由于是number类型,所以转字符串
if (template .length > 3) { // 要显示的字符数
template = template .substring(0, 3) + '...'//字符串截取
}
return template
}
}
},
效果图: