axisX: {
title: "History",
valueFormatString: "MM/DD/YY",
intervalType: "month",
gridThickness: GridThickness,
titleFontSize: 8,
labelFontSize: 8,
},
答案 0 :(得分:0)
将valueFormatString
属性设置为空字符串。 Docs are here
axisX: {
title: "History",
valueFormatString: "MM/DD/YY",
intervalType: "month",
gridThickness: GridThickness,
titleFontSize: 8,
labelFontSize: 8,
valueFormatString: " ", // x axis label will be empty
},