带数据源的 devextreme-react 折线图 (reshapeOnPush) 20 个元素限制
我需要每10秒实现一个实时能源消耗的线路图。 我正在测试DeVextreme-React,然后使用以下沙箱 此虚拟代码添加了我在图表数据源中所需的数据的17个出现时
{ time: 0, '1': 0, '2': 0, '3': 0, '4': 0 },
{ time: 10, '1': 3, '2': 4, '3': 2, '4': 6 },
{ time: 20, '1': 3, '2': 4, '3': 2, '4': 6 }
etc. etc.
,当在沙箱中加载代码添加了17个出现,并且图表底部有一个按钮以模拟实时供稿。
问题:只能添加到计数19。从计数20开始,图表不更新。
我在这里想念什么?
谢谢,最好的问候
I need to realise a line chart for real time energy consumption each 10 seconds.
I am testing devextreme-react with the following sandbox
Energy chart sandbox
This dummy code add 17 occurrences of the data I need in the chart data source
{ time: 0, '1': 0, '2': 0, '3': 0, '4': 0 },
{ time: 10, '1': 3, '2': 4, '3': 2, '4': 6 },
{ time: 20, '1': 3, '2': 4, '3': 2, '4': 6 }
etc. etc.
When loaded the code in the sandbox adds 17 occurrences and there is a button at the bottom of the chart to simulate the real time feed.
PROBLEM: it is possible to add only until count 19. From count 20 the chart doesn't update.
What am I missing here?
Thanks and best regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
结果发现 dataSource 默认激活了分页并设置为 20。
修复方法只是将其停用
So turns out that dataSource has pagination activated by default and set to 20.
Fix was simply to deactivate it