xAxis.axisLabel. showMaxLabel
是否显示最大 tick 的 label。
可取值 true, false, null。
默认自动判定(即如果标签重叠,不会显示最大 tick 的 label)。
xAxis: {
type: "category",
axisLabel: {
showMaxLabel: true
}
}
xAxis: [
{
type: 'category',
data: xData,
show: true,
axisTick: {
show: true,
inside: true //刻度内置
},
axisLine: {
show: true,
lineStyle: {
type: "dashed",
color: "rgba(204, 204, 204, 1)",
},
},
splitLine: {
show: false
},
axisLabel: {
showMaxLabel: false, //显示最大刻度
textStyle: {
color: '#ccc',
},
margin: 14,
},
interval: 1,
},
],