我想知道如何将正确的填充值设置为 jqplot 轴,以便点不会呈现在边界上。
这是我的代码
yaxis:{
max: 1,
min: 200,
numberTicks: 5,
tickOptions:{
formatString:'%i'
}
}
这将显示一个倒置轴,从底部的 200 到顶部的 1。值也从 1 到 200 不等。我尝试使用 maxPad、minPad 甚至手动设置刻度(刻度:['200'、'150'、'100'、'50'、'1'])但没有运气至今。
提前致谢 :)