我有一个奇怪的问题我将我的sankey从v3移动到d3的v4并且我收到错误TypeError:source is undefined。它带我到sankey.js这里
links.forEach(function(link) {
var source = link.source,
target = link.target;
if (typeof source === "number") source = link.source = nodes[link.source];
if (typeof target === "number") target = link.target = nodes[link.target];
source.sourceLinks.push(link);
target.targetLinks.push(link);
});
}
我使用csv作为我的数据源,我不确定它是否在d3 v3中工作