如何更改 Flot 中 y 轴值的步进?
我有一张随时间变化的内存使用情况图,如下所示:
我设置了 y 轴:{ max:n }
值 n
到 1024(这意味着 1024MB RAM)。
如何让 Flot 更改 y 轴标签以便显示:
1024 768 512 256 128 0
I have a graph of memory use over time which looks like:
I set the y-axis: { max:n }
value n
to 1024 (which means 1024MB of RAM).
How do I get Flot to change the y-axis labels so they display:
1024 768 512 256 128 0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
ticks
选项来实现此目的:您可以在此处进行测试 ,如果您想要这样的效果,那么
markings
选项只是为了给它一点风格。You can use the
ticks
option for this:You can test it out here, the
markings
option is just to give it a bit of style, if you're after an effect like that at all.