0

我有一个Eclipse RCP应用程序,它使用 SWT 浏览器通过 D3.js 可视化数据。此外,我现在想使用Cubism.js绘制一些实时数据。要绘制的值以不规则的间隔到达 RCP 应用程序。

我目前从 RCP 应用程序向立体主义图表提供数据的微弱尝试如下(抱歉我的 JavaScript 不好):

function getGraphData(name) {
      var value = 0,
          values = [],
          i = 0,
          last;

    return context.metric(function(start, stop, step, callback) {
    start = +start, stop = +stop;
    values = [];
    if (isNaN(last)) last = start;
        last += step;
        // extVals is a global variable that is set by the RCP application
        for(var j = 0; j < extVals.length; j++){ 
            values.push(extVals[j]);
        }
        // Clear the array
        extVals.length = 0;

    callback(null, values)
    }, name);

}

目前的情况是我可以使用全局extVals数组从 RCP 应用程序设置新数据,但是如果其中一个值大于图表中的前一个值,图表只会显示这些新值。

非常感谢您对此的任何帮助。

4

1 回答 1

0

在创建显示股票图表数据的应用程序时,我遇到了数据不定期到达的问题。

我已经在我的立体主义教程中描述了如何填写这些数据:http: //xaranke.github.io/articles/cubism-intro/

于 2013-06-10T06:26:45.437 回答