我们可以设置cubism.js y轴没有上限吗?

时间:2015-03-25 06:46:12

标签: javascript html5 cubism.js

我使用cubism.js来显示我的数据,但我的数据没有上限,或者我的数据会发生很大变化。

请帮帮我!

div.append("div")
  .attr("class", "horizon")
  .call(context.horizon()
  .height(240)
  .mode("offset")
  .colors(["#08519c","#3182bd"])
  .title("QPS")
  .extent([0, ???]));

1 个答案:

答案 0 :(得分:0)

您可能想尝试使用Number.MAX_VALUE:

div.append("div")
  .attr("class", "horizon")
  .call(context.horizon()
  .height(240)
  .mode("offset")
  .colors(["#08519c","#3182bd"])
  .title("QPS")
  .extent([0, Number.MAX_VALUE]));