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.
我想创建一个图,显示我从电表获得的实时计量数据。
我已经想出了如何在散景中绘制一个图,每 x 秒用新值更新一次,但现在我想让新值始终位于图中的固定点,而轴的范围不会增加。我通过在图中添加 x_range=[0, 10] 来固定范围,但是该图已超出屏幕,我必须手动跟随它。如何更改它以使其自动跟随它?
这在散景中是否可行,还是我应该为我的项目使用不同的东西?
使用默认DataRange1d范围(即不要将范围设置为固定间隔),然后follow在范围上设置属性。您还可以设置follow_interval以指定范围应在最新数据后面多远。
DataRange1d
follow
follow_interval
p.x_range.follow = "end" p.x_range.follow_interval = 100
有关完整的演示,请参见OHLC 代码示例。
在图像上