2017-09-29 10 views
8

私のコードはグラフを作成し、各ノードにピボット点を作成します。ダブルクリックすると、ノードに関連付けられたデータがさらに取得され、私は、最も外側のいずれかのノードではなく、新たなリンクが最初のノード(青1)に接続されていたいくつかの理由でクリックD3新しい要素でグラフを更新すると、間違ったノードでエッジが作成される

enter image description here enter image description here

:今ここに私はに実行している問題があります。なぜこれが起こっているのか?

function draw_graph(graph) { 
    var color = d3.scaleOrdinal(d3.schemeCategory20); 

    var svg = d3.select("svg"), 
     width = +svg.attr("width"), 
     height = +svg.attr("height"), 
     node, 
     link; 

    svg.append('defs').append('marker') 
     .attrs({ 
      'id': 'arrowhead', 
      'viewBox': '-0 -5 10 10', 
      'refX': 13, 
      'refY': 0, 
      'orient': 'auto', 
      'markerWidth': 13, 
      'markerHeight': 13, 
      'xoverflow': 'visible' 
     }) 
     .append('svg:path') 
     .attr('d', 'M 0,-5 L 10 ,0 L 0,5') 
     .attr('fill', '#999') 
     .style('stroke', 'none'); 

    var simulation = d3.forceSimulation() 
     .force("link", d3.forceLink().id(function (d) { 
      return d.id; 
     }).distance(200).strength(1)) 
     .force("charge", d3.forceManyBody()) 
     .force("center", d3.forceCenter(width/2, height/2)); 

    update(graph.links, graph.nodes); 

    svg.selectAll('circle').on('dblclick', function() { 
     var pivot_id = ($(this).siblings('title').text()) 
     console.log('pivoting on', pivot_id) 
     pivot_search(pivot_id) 
    }); 


    function update(links, nodes) { 
     link = svg.selectAll(".link") 
      .data(links) 
      .enter() 
      .append("line") 
      .attr("class", "link") 
      .attr('marker-end', 'url(#arrowhead)') 


     edgepaths = svg.selectAll(".edgepath") 
      .data(links) 
      .enter() 
      .append('path') 
      .attrs({ 
       'class': 'edgepath', 
       'fill-opacity': 0, 
       'stroke-opacity': 0, 
       'id': function (d, i) { 
        return 'edgepath' + i 
       } 
      }) 
      .style("pointer-events", "none"); 

     edgelabels = svg.selectAll(".edgelabel") 
      .data(links) 
      .enter() 
      .append('text') 
      .style("pointer-events", "none") 
      .attrs({ 
       'class': 'edgelabel', 
       'id': function (d, i) { 
        return 'edgelabel' + i 
       }, 
       'font-size': 10, 
       'fill': '#aaa' 
      }); 

     node = svg.selectAll(".node") 
      .data(nodes) 
      .enter() 
      .append("g") 
      .attr("class", "node") 
      .call(d3.drag() 
       .on("start", dragstarted) 
       .on("drag", dragged) 
      ); 

     node.append("circle") 
      .attr("r", 5) 
      .attr("fill", function (d) { 
       return color(d.group); 
      }) 


     node.append("title") 
      .text(function (d) { 
       return d.id; 
      }); 

     node.append("text") 
      .attr("dy", -3) 
      .text(function (d) { 
       return d.label; 
      }); 


     simulation 
      .nodes(nodes) 
      .on("tick", ticked); 

     simulation.force("link") 
      .links(links); 

    } 

    function ticked() { 
     link 
      .attr("x1", function (d) { 
       return d.source.x; 
      }) 
      .attr("y1", function (d) { 
       return d.source.y; 
      }) 
      .attr("x2", function (d) { 
       return d.target.x; 
      }) 
      .attr("y2", function (d) { 
       return d.target.y; 
      }); 

     node 
      .attr("transform", function (d) { 
       return "translate(" + d.x + ", " + d.y + ")"; 
      }); 

     edgepaths.attr('d', function (d) { 
      return 'M ' + d.source.x + ' ' + d.source.y + ' L ' + d.target.x + ' ' + d.target.y; 
     }); 

     edgelabels.attr('transform', function (d) { 
      if (d.target.x < d.source.x) { 
       var bbox = this.getBBox(); 

       rx = bbox.x + bbox.width/2; 
       ry = bbox.y + bbox.height/2; 
       return 'rotate(180 ' + rx + ' ' + ry + ')'; 
      } 
      else { 
       return 'rotate(0)'; 
      } 
     }); 
    } 

    function dragstarted(d) { 
     if (!d3.event.active) simulation.alphaTarget(0.3).restart() 
     d.fx = d.x; 
     d.fy = d.y; 
    } 

    function dragged(d) { 
     d.fx = d3.event.x; 
     d.fy = d3.event.y; 
    } 


} 

function pivot_search(entity_id) { 
    var json = { 
     'nodes': [], 
     'links': [], 
    } 
    get_entities({'id': entity_id}) 
     .done(function (data) { 
      json.nodes.push({ 
       'label': data['results'][0]['label'], 
       'id': data['results'][0]['id'], 
       'group': data['results'][0]['entity_type'], 
      }) 
      get_entities({ 
       'related_entities': entity_id, 
       'related_entities__entity_instance__entity_type__strong_entity': true, 
       'page_size': 500 
      }) 
       .done(function (data) { 
        for (var i = 0; i < data['results'].length; i++) { 
         json.nodes.push({ 
          'label': data['results'][i]['label'], 
          'id': data['results'][i]['id'], 
          'group': data['results'][i]['entity_type'], 
         }) 
         json.links.push({ 
          'source': entity_id, 
          'target': data['results'][i]['id'], 

         }) 
        } 
        draw_graph(json) 
       }) 
     }) 
} 

EDIT:それは新しいデータで既存のノードへのリンクを交換し、新しい潜在的に重複ノードを作成しているようにさらなる調査の際には思えます。

link = svg.selectAll('.link') 
      .data(links, function (d) { 
       return d.id; 
      }) 
      .enter() 
      .append('line') 
      .attr('class', 'link') 
      .attr('marker-end', 'url(#arrowhead)') 


     edgepaths = svg.selectAll('.edgepath') 
      .data(links) 
      .enter() 
      .append('path') 
      .attrs({ 
       'class': 'edgepath', 
       'fill-opacity': 0, 
       'stroke-opacity': 0, 
       'id': function (d, i) { 
        return 'edgepath' + i 
       } 
      }) 
      .style('pointer-events', 'none'); 

     node = svg.selectAll('.node') 
      .data(nodes, function (d) { 
       return d.id; 
      }) 
      .enter() 
      .append('g') 
      .attr('class', 'node') 
      .call(d3.drag() 
       .on('start', dragstarted) 
       .on('drag', dragged) 
      ); 

ノード重複の処理に役立つIDを追加しましたが、今ではインデックスルートの移動に問題があります。

enter image description here enter image description here

+0

hi-あなたは.dataジョインにキーを渡してみましたか?例えば、データ(links、function(d){return d.id})。これは、データの更新と一貫性を持たせたい場合に必要となることがよくあります。詳細についてはこちらをご覧くださいhttps://github.com/d3/d3-selection#selection_data –

+0

@tomShanley私はそれを行い、いくつかの問題を解決しました。しかし、まだ奇妙な問題にリンクしています。 –

答えて

1

あなたが持っている問題は、あなたのデータは、D3のデータ-参加機能の中に複製されるかもしれないという事実によるものであることが表示されます。この問題を解決する最良の方法は、D3がバインドする前にデータ内の各ノードに「UUID/GUID」を作成することです(例についてはhereを参照)。これを実行すると、データをバインドし、データ結合のキー指定関数(説明についてはhereを参照)を使用して、各オブジェクトに対して作成したUUID/GUID値を使用して一貫性を保証するようにD3に指示できます。そこから、親子関係を簡単に処理できるはずです。それが重複する値のために働いているので、「ソース」オブジェクトへの参照は、D3が期待するという方法が設定されていないため

編集#1

は、あなたはおそらく持っている次の問題があります。 D3では、リンクの「source」プロパティは実際のソースオブジェクトへの参照であり、ID値を提供しています(D3v4ドキュメント参照の場合はhereを参照してください)。配列内の実際のソースオブジェクトへの参照を提供しようとすると、それを修正する必要があります。

編集#2

あなたはビジュアライゼーションに入ってくる新しいデータを処理しているという点で正しいですが、私はあなたがいないされている既存の、またはOLD(意味、データポイントを処理しているとは思いません関連性が長く、ノード/リンクを削除する必要があります)。この場合、Mike Bostock(D3.jsライブラリの元の作成者)hereの次の例でコードを更新して、それが完了したら再度報告してください。あなたが見ている新しいノードは、単に子供が縛られていないので、削除する必要のある古いノードである可能性があるので、D3jsはそれらを実際に必要とされる「新しい」ノードまたは「既存の」ノードと見なします除去された。

+0

キー機能を追加すると、ノードに関する重複問題は解決されましたが、すべてが引き続きルートに接続しています。 –

+0

編集されたコメント@ Stupid.Fat。Cat – th3n3wguy

+0

グラフを更新する方法が「正しい」方法ではないようですが、新しいデータを追加する方法は正しいですか? (基本的にsvgを取り出してそれに追加する) –

関連する問題