Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个实时线图,随着时间的流逝,新数据点添加到系列中。我想将其限制为一小时窗口并将绘图向左移动。在任何时候绘图都应显示一小时的数据点和导航器句柄最大间隔也应该是一小时。如何实现这个?
HopeFully 我已经正确理解了您的问题
对于示例,我仅在 10 秒内创建了新条目,您只需在 setTimeout 函数中将其替换为适当的所需值
并将导航器向左移动只需将其添加到您的代码中
xAxis: {min:0, max:3600000}
检查这个小提琴FIDDLE
您可以使用afterSetExtremes(链接) 更改适合您需要的极端值。所以只需检查间隔(比较this.min和this.max),然后设置适当的极值(如果间隔太大或太小)。
afterSetExtremes
this.min
this.max