浮点图数据点数量
我需要使用 x 轴选择来绘制具有缩放功能的图形,我正在使用 Flot 来绘制图形。我必须显示缩放后存在的点数。 我总是得到总长度而不是缩放长度。
请帮忙
I have a requirement to Plot a graph with zoom feature using x axis selection, i am using Flot for plotting graph. I have to show the number of points present after zooming.
I am alwayz getting the total length not the Zoomed length.
Kindly Help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在你的“plotzoom”回调中,你可以获得 min & max x / y 坐标如下(来自网站上的示例):
您可以使用它们来计算此矩形内有多少个点。
我可以建议使用 underscore.js 过滤功能来简化这个吗?
例如。
这将给出一个包含 x 和 x 之间的点的数组。 y 格言。然后您可以使用长度来获得计数!
In your "plotzoom" callback, you can get min & max x / y co-ordinates back like so (from the examples on the site):
You can the use these to count how many points are within this rectangle.
May i suggest using underscore.js filter function to simplify this?
Eg.
This will give an array with points in-between x & y maxims. You can then use length to get the count!