带有 a 和 y 轴以外的数据的浮点图工具提示
我有一个 Flot 图,y 轴上有速度,x 轴上有距离,还有工具提示 (x,y)。我需要仅在工具提示中显示另一个数据“日期”以及 x 和 y,而不是在图表上。最好的方法是什么。 DB中的数据将是速度|距离|日期等...所以x,y和日期之间存在关系。
I have a Flot graph with speed on y axis and distance on x axis and tooltip (x,y). I need to show another data "date" along with the x and y in tooltip only,not on the graph. What is the best way to do it. The data in DB will be Speed|distance|date etc... So there is a relation between x,y and date.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是创建一个与数据点数组索引相同的日期数组。然后,在工具提示函数中,您可以按索引查询日期数组,以提取该点的适当日期(请参阅小提琴
The simplest way would be to create an array of dates that is indexed identical to your data point array. In your tool tip function you can then query the date array by index to pull out the appropriate date for that point (see fiddle here):