我使用cubism.js
来显示我的数据,但我的数据没有上限,或者我的数据会发生很大变化。
请帮帮我!
div.append("div")
.attr("class", "horizon")
.call(context.horizon()
.height(240)
.mode("offset")
.colors(["#08519c","#3182bd"])
.title("QPS")
.extent([0, ???]));
答案 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]));