gpt4 book ai didi

graph - 测绘仪 : how to clear the graph data and reload it?

转载 作者:行者123 更新时间:2023-12-02 06:02:36 25 4
gpt4 key购买 nike

我的应用程序具有刷新功能,其中图表上的所有当前数据应被清除,并且应从一开始就加载数据。我不想破坏dygraph并重新创建它,但只需要清除现有数据并从头开始绘图。我尝试的是

g.rawdata_ = null;g.updateOptions({'file': g.rawdata_});

但是它会抛出错误。如果我将 rawdata 设置为 0 然后尝试更新,它不会清除数据。关于如何做到这一点有什么建议吗?

最佳答案

就像评论中的人所说:

plotData = [[0,0]];

g.updateOptions(
{
'file': plotData
}
);

plotData 中必须有某些内容。您可能可以使用几种不同格式中的一种,但上述格式过去对我有用。我也在实时更新绘图并每秒刷新数据。为此,我在 updateOptions 之前预加载绘图数据。

祝你好运

j

关于graph - 测绘仪 : how to clear the graph data and reload it?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18826880/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com