gpt4 book ai didi

javascript - 使用 NVD3.js 构建有焦点的折线图。为什么我的焦点栏坏了

转载 作者:行者123 更新时间:2023-11-28 01:10:07 26 4
gpt4 key购买 nike

我尝试遵循line chart with focus example在 NVD3 示例页面上,但焦点栏不起作用,我看不到我错过了什么...

Here's a fiddle这说明了这个问题。您可以看到拖动焦点栏不会使图表聚焦

这是我的 HTML(我有一些静态测试数据,底部是来自 NVD3 示例页面的测试数据生成器)

<!DOCTYPE html>
<html>
<head>
<title>$title</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/d3/3.4.9/d3.js" charset="utf-8"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/nvd3/1.1.15-beta/nv.d3.js"></script>
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/nvd3/1.1.15-beta/nv.d3.css"/>

</head>
<body>
<h1>$title</h1>
<div id="chart">
<svg style="height:500px"></svg>
</div>

<script>
//my fake data
var testData = [
{
key: 'expected',
//values: $expectedData
values: [
{x: 0, y: 1},
{x: 1, y: 2},
{x: 2, y: 3},
{x: 3, y: 4},
{x: 4, y: 5},
]
},
{
key: 'actual',
//values: $actualData
values: [
{x: 0, y: 3},
{x: 1, y: 4},
{x: 2, y: 5},
{x: 3, y: 4},
{x: 4, y: 6},
]
}
]
console.log(genTestData());
console.log(testData);

nv.addGraph(function() {
var chart = nv.models.lineWithFocusChart();

chart.xAxis
.tickFormat(d3.format(',f'));

chart.yAxis
.tickFormat(d3.format(',.2f'));

chart.y2Axis
.tickFormat(d3.format(',.2f'));

d3.select('#chart svg')
.datum(testData)
.transition().duration(500)
.call(chart);

nv.utils.windowResize(chart.update);

return chart;
});
/**************************************
* The data generator for the working test example
*/

function genTestData() {
return stream_layers(3,128,.1).map(function(data, i) {
return {
key: 'Stream' + i,
values: data
};
});
}

/* Inspired by Lee Byron's test data generator. */
function stream_layers(n, m, o) {
if (arguments.length < 3) o = 0;
function bump(a) {
var x = 1 / (.1 + Math.random()),
y = 2 * Math.random() - .5,
z = 10 / (.1 + Math.random());
for (var i = 0; i < m; i++) {
var w = (i / m - y) * z;
a[i] += x * Math.exp(-w * w);
}
}
return d3.range(n).map(function() {
var a = [], i;
for (i = 0; i < m; i++) a[i] = o + o * Math.random();
for (i = 0; i < 5; i++) bump(a);
return a.map(stream_index);
});
}
function stream_index(d, i) {
return {x: i, y: Math.max(0, d)};
}
</script>
</body>
</html>

最佳答案

fiddle 在大部分情况下都有效。显然存在一个问题,如果您的焦点包含的点少于 2 个点,则主图表将显示为空白。您会注意到 nvd3 的示例页面存在问题,但有足够的数据,必须故意放大到这一极限。 (不像你的 fiddle 只有 5 个数据点)

只需确保焦点上的最小选择大小足够大以跨越至少 2 个点即可解决您的问题。

关于javascript - 使用 NVD3.js 构建有焦点的折线图。为什么我的焦点栏坏了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24553475/

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