我想更新图表但不起作用。我想更新线条和圆圈。我试着添加
.exit().remove()
更新圈子和
g.selectAll("path").attr("d", line);
更新路径。
然而它不起作用。
使用exit()更新外部组.remove()工作正常。 (此示例中的复选框)。
仅更新路径和圆圈不起作用。 (此示例中为“更新按钮”)
我不想删除图表中的所有行并再次附加它,因为我想在数据更改时添加转换。
这是一个JS小提琴:LINK 这是我的代码:
var data = [
[{
point: {
x: 10,
y: 10
}
}, {
point: {
x: 100,
y: 30
}
}],
[{
point: {
x: 30,
y: 100
}
}, {
point: {
x: 230,
y: 30
}
},
{
point: {
x: 50,
y: 200
}
},
{
point: {
x: 50,
y: 300
}
},
]
];
var svg = d3.select("svg");
var line = d3.line()
.x((d) => d.point.x)
.y((d) => d.point.y);
function updateGraph() {
console.log(data)
var allGroup = svg.selectAll(".pathGroup").data(data);
var g = allGroup.enter()
.append("g")
.attr("class", "pathGroup")
allGroup.exit().remove()
g.append("path")
.attr("class", "line")
.attr("stroke", "red")
.attr("stroke-width", "1px")
.attr("d", line);
g.selectAll("path").attr("d", line);
g.selectAll(null)
.data(d => d)
.enter()
.append("circle")
.attr("r", 4)
.attr("fill", "teal")
.attr("cx", d => d.point.x)
.attr("cy", d => d.point.y)
.exit().remove()
}
updateGraph()
document.getElementById('update').onclick = function(e) {
data = [
[{
point: {
x: 10,
y: 10
}
}, {
point: {
x: 100,
y: 30
}
}],
[{
point: {
x: 30,
y: 100
}
}, {
point: {
x: 230,
y: 30
}
},
{
point: {
x: 50,
y: 300
}
},
]
];
updateGraph()
}
$('#cb1').click(function() {
if ($(this).is(':checked')) {
data = [
[{
point: {
x: 10,
y: 10
}
}, {
point: {
x: 100,
y: 30
}
}],
[{
point: {
x: 30,
y: 100
}
}, {
point: {
x: 230,
y: 30
}
},
{
point: {
x: 50,
y: 200
}
},
{
point: {
x: 50,
y: 300
}
},
]
];
} else {
data = [
[{
point: {
x: 10,
y: 10
}
}, {
point: {
x: 100,
y: 30
}
}]
];
}
updateGraph()
});
答案 0 :(得分:1)
allGroup.exit().remove()
什么都不做的原因是更新的数据集仍然具有与原始数据集相同的项目数。因此退出选择为空。
变量data
包含行,而不是点。在页面加载时定义的那个,以及update
个侦听器中的一个包含两行,只有它们中的点数不同。
您可以通过在console.log(data.length)
内置updateGraph
来查看此内容。
更改您的数据结构。您可以为每一行分配id
属性,并使用.data
' s,key
功能。比照d3-selection documentation
更新了jsFiddle实施解决方案1:see here。
此解决方案需要更少的更改。
如果您无法控制数据结构,可以在update
选项内转换线条图,而不是exit
选项。