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.
如何更新轻量级图表系列中的部分日期范围?setData 只更新整个数据集,但我只想设置或更新额外的 100 个条目到当前作为响应更新的一部分加载的 1000 个条目数据集中。
谢谢。
恐怕现在这是不可能的。您可以将数据保存在库之外的某个位置,然后将所有数据设置到库中,如下所示:
let data = []; series.setData(data); // ... data = [...newData, ...data]; series.setData(data);