jqPlot 刻度不带小数
我正在使用 jqplot,默认情况下它会得到这样的标记:
我应该怎么做才能在没有 .0
最后?
I am using jqplot, and it gets marks by default like this:
What should I do to get it without .0
at the end?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为这确实是答案,所以我会将其作为实际答案发布。
使用
stringFormat
,您可以格式化轴标签的字符串,它使用 sprintf 表示法,其中 %d 是有符号整数。由于整数没有小数,这可能就是您想要的。Since it was indeed the answer I'll post it as an actual one.
With
stringFormat
, you can format the string of the axis labels, and it usessprintf
notation, where%d
is a signed integer. Since integers do not have decimals, it is probably what you want.