d3 Cubism.js标签在回调后消失了吗?

时间:2013-08-15 00:07:17

标签: cubism.js

我不知道如何解决这个问题。我正在使用cubism.js,下面是我的代码示例

context = cubism.context().step(1 * 60 * 1000) 
                      .size(150) 

g = context.graphite("url info ...")          
metric = [g.metric("metric info ...").summarize("avg").alias('NSS')]
d3.select("#graph')
            .selectAll(".horizon")
            .data((metric)).enter()
            .insert("div", ".bottom")
            .attr("class", "horizonsp")
            .call context.horizon()
            .height(height)
            .extent([0,100])
            .colors(spectral)

我尝试添加.serverDelay(1 * 60 * 1000).serverDelay(2 * 60 * 1000),但标签仍然消失。

有关检查或更改内容的任何建议?

0 个答案:

没有答案