forceAtlas2 の実行中にメイン グラフからサブグラフを動的に追加および削除したい sigma.js を使用するプロジェクトに取り組んでいます。私は JS の初心者なので、私の質問はおそらく JavaScript の問題ですが、回避できません。
これは、シグマ インスタンスにグラフ グラフをロードするための関数です。
function loadGraph (json) {
console.log ("load graph");
sigInst.stopForceAtlas2();
$.getJSON(json, function (data) {
var edges = data.edges;
var nodes = data.nodes;
$.each(nodes, function (index, value) {
addNode(value.label, value.x, value.y, value.id, value.size, value.color);
});
$.each(edges, function (index, value) {
addEdge(value.source, value.target, value.id, value.weight);
});
});
sigInst.draw(2,2,2);
}
これは addNode 関数です:
function addNode (label, x, y, id, size, color) {
if (!sigInst.hasNode(id)) {
sigInst.addNode(id,{
'x': x,
'y': y,
label: label,
size:size,
color: color
});
console.log ("added node " + id);
}
else {
var nodeExisting = sigInst.getNodes(id);
var exSize = parseInt(nodeExisting.size);
console.log ("node " + id + " former size: "+ exSize);
exSize += parseInt(size);
nodeExisting.size = exSize;
console.log ("node " + id + " size now: " + exSize);
}
sigInst.draw();
}
そして addEdge 関数:
function addEdge (source, target,id, weight) {
if (!sigInst.hasEdge(id)) {
sigInst.addEdge(id, source, target, weight).draw();
}
else {
var edgeExisting = sigInst.getEdges(id);
//console.log("existing weight: " + edgeExisting.weight);
var exSize = parseInt(edgeExisting.weight);
exSize += parseInt(weight);
edgeExisting.weight = exSize;
//console.log("modified weight: " + edgeExisting.weight + " (" + edgeExisting.source + " -> " + edgeExisting.target + ")");
}
}
これを機能させるために、sigma.min.js に 2 つの関数を追加しました。
this.hasNode = function(id){return typeof(b.graph.nodesIndex[id]) != 'undefined';};
と
this.hasEdge = function (id) {return typeof(b.graph.edgesIndex[id])!='undefined';};
私の問題は、 addNode 関数が実際には既存のノードのサイズを大きくしないことです。私は Java 出身で、JavaScript では既存のノードがおそらく参照によって渡されないことを知っているので、フィールドを変更して sigInst オブジェクトがこれを反映することを期待することはできませんが、その方法がわかりません。誰かが助けてくれれば、とても感謝しています。前もって感謝します!