2013-09-04 2 views
6

그래서 강제 지시 그래프로 놀고 있습니다. 데이터에서 다른 텍스트로 마우스를 가져 가면 노드 변경시 .text를 만들었습니다.D3 포스 레이아웃 노드 레이블에 줄 바꿈 삽입하기

스크립트 : 당신은 내 jsfiddle에서 작업 예제를 볼 수

var data = {"nodes":[ 
         {"name":"YHO", "full_name":"Yahoo", "type":1, "slug": "www.yahoo.com", "entity":"company", "img_hrefD":"", "img_hrefL":""}, 
         {"name":"GGL", "full_name":"Google", "type":2, "slug": "www.google.com", "entity":"company", "img_hrefD":"", "img_hrefL":""}, 
         {"name":"BNG", "full_name":"Bing", "type":2, "slug": "www.bing.com", "entity":"company", "img_hrefD":"", "img_hrefL":""}, 
         {"name":"YDX", "full_name":"Yandex", "type":2, "slug": "www.yandex.com", "entity":"company", "img_hrefD":"", "img_hrefL":""}, 

         {"name":"Desc1", "type":4, "slug": "", "entity":"description"}, 
         {"name":"Desc2", "type":4, "slug": "", "entity":"description"}, 
         {"name":"Desc4", "type":4, "slug": "", "entity":"description"}, 

         {"name":"CEO", "prefix":"Mr.", "fst_name":"Jim", "snd_name":"Bean", "type":3, "slug": "", "entity":"employee"}, 
         {"name":"ATT", "prefix":"Ms.", "fst_name":"Jenna", "snd_name":"Jameson", "type":3, "slug": "", "entity":"employee"}, 
         {"name":"CTO", "prefix":"Mr.", "fst_name":"Lucky", "snd_name":"Luke", "type":3, "slug": "", "entity":"employee"}, 
         {"name":"CDO", "prefix":"Ms.", "fst_name":"Pamela", "snd_name":"Anderson", "type":3, "slug": "", "entity":"employee"}, 
         {"name":"CEO", "prefix":"Mr.", "fst_name":"Nacho", "snd_name":"Vidal", "type":3, "slug": "", "entity":"employee"}, 
        ], 
      "links":[ 
         {"source":0,"target":4,"value":1,"distance":5}, 
         {"source":0,"target":5,"value":1,"distance":5}, 
         {"source":0,"target":6,"value":1,"distance":5}, 

         {"source":1,"target":4,"value":1,"distance":5}, 
         {"source":2,"target":5,"value":1,"distance":5}, 
         {"source":3,"target":6,"value":1,"distance":5}, 

         {"source":7,"target":3,"value":10,"distance":6}, 
         {"source":8,"target":3,"value":10,"distance":6}, 
         {"source":9,"target":1,"value":10,"distance":6}, 
         {"source":10,"target":1,"value":10,"distance":6}, 
         {"source":11,"target":2,"value":10,"distance":6}, 
         ] 
       }  



    var w = 560, 
     h = 500, 
     radius = d3.scale.log().domain([0, 312000]).range(["10", "50"]); 

    var vis = d3.select("body").append("svg:svg") 
     .attr("width", w) 
     .attr("height", h); 

     //vis.append("defs").append("marker") 
     //.attr("id", "arrowhead") 
     //.attr("refX", 22 + 3) /*must be smarter way to calculate shift*/ 
     //.attr("refY", 2) 
     //.attr("markerWidth", 6) 
     //.attr("markerHeight", 4) 
     //.attr("orient", "auto") 
     //.append("path") 
      //.attr("d", "M 0,0 V 4 L6,2 Z"); //this is actual shape for arrowhead 

    //d3.json(data, function(json) { 
     var force = self.force = d3.layout.force() 
      .nodes(data.nodes) 
      .links(data.links) 
      .linkDistance(function(d) { return (d.distance*10); }) 
      //.friction(0.5) 
      .charge(-250) 
      .size([w, h]) 
      .start(); 



     var link = vis.selectAll("line.link") 
      .data(data.links) 
      .enter().append("svg:line") 
      .attr("class", function (d) { return "link" + d.value +""; }) 
      .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; }) 
      .attr("marker-end", function(d) { 
               if (d.value == 1) {return "url(#arrowhead)"} 
               else { return " " } 
              ;}); 


     function openLink() { 
      return function(d) { 
       var url = ""; 
       if(d.slug != "") { 
        url = d.slug 
       } //else if(d.type == 2) { 
        //url = "clients/" + d.slug 
       //} else if(d.type == 3) { 
        //url = "agencies/" + d.slug 
       //} 
       window.open("//"+url) 
      } 
     } 




     var node = vis.selectAll("g.node") 
      .data(data.nodes) 
      .enter().append("svg:g") 
      .attr("class", "node") 
      .call(force.drag); 


     node.append("circle") 
      .attr("class", function(d){ return "node type"+d.type}) 
      .attr("r",function(d){if(d.entity == "description"){ return 6 } else { return 18 }}) 
      //.on("mouseover", expandNode); 
      //.style("fill", function(d) { return fill(d.type); }) 



     node.append("svg:image") 
      .attr("class", function(d){ return "circle img_"+d.name }) 
      .attr("xlink:href", function(d){ return d.img_hrefD}) 
      .attr("x", "-36px") 
      .attr("y", "-36px") 
      .attr("width", "70px") 
      .attr("height", "70px") 
      .on("click", openLink()) 
      .on("mouseover", function (d) { if(d.entity == "company") 
               { 
        d3.select(this).attr("width", "90px") 
            .attr("x", "-46px") 
            .attr("y", "-36.5px") 
            .attr("xlink:href", function(d){ return d.img_hrefL});       
               } 
       }) 
      .on("mouseout", function (d) { if(d.entity == "company") 
              { 
        d3.select(this).attr("width", "70px") 
            .attr("x", "-36px") 
            .attr("y", "-36px") 
            .attr("xlink:href", function(d){ return d.img_hrefD}); 
              } 
       });  


     node.append("svg:text") 
      .attr("class", function(d){ return "nodetext title_"+d.name }) 
      .attr("dx", 0) 
      .attr("dy", ".35em") 
      .style("font-size","10px") 
      .attr("text-anchor", "middle") 
      .style("fill", "white") 
      .text(function(d) { if (d.entity != "description"){return d.name} }); 


     node.on("mouseover", function (d) { 
      if (d.entity == "company"){ 
       d3.select(this).select('text') 
        .transition() 
        .duration(300) 
        .text(function(d){ 
          return d.full_name; 
         }) 
        .style("font-size","15px") 

      } 
      else if(d.entity == "employee"){ 
       d3.select(this).select('text') 
        .transition() 
        .duration(300) 
        .text(function(d){return d.prefix + ' ' + d.fst_name + ' ' + d.snd_name}) 
        .style("font-size","8px") 

      } 
      else { 
       d3.select(this).select('text') 
        .transition() 
        .duration(300) 
        .style("font-size","15px") 
      } 

      if (d.entity == "company") { 
       d3.select(this).select('image') 
        .attr("width", "90px") 
        .attr("x", "-46px") 
        .attr("y", "-36.5px") 
        .attr("xlink:href", function (d) { 
         return d.img_hrefL 
         });    
      } 

      if (d.entity == "company") { 

       d3.select(this).select('circle') 
           .transition() 
           .duration(300) 
           .attr("r",28) 

      } 
      else if (d.entity == "employee"){ 
       d3.select(this).select('circle') 
           .transition() 
           .duration(300) 
           .attr("r",32) 
      } 
     }) 


     node.on("mouseout", function (d) { 
      if (d.entity == "company") { 
       d3.select(this).select('text') 
        .transition() 
        .duration(300) 
        .text(function(d){return d.name;}) 
        .style("font-size","10px") 
       } 
      else if(d.entity == "employee"){ 
       d3.select(this).select('text') 
        .transition() 
        .duration(300) 
        .text(function(d){return d.name;}) 
        .style("font-size","10px") 

      } 
      else { 
       d3.select(this).select('text') 
        .transition() 
        .duration(300) 
        .style("font-size","10px") 
      } 


      if (d.entity == "company") { 
       d3.select(this).select('image') 
        .attr("width", "70px") 
        .attr("x", "-36px") 
        .attr("y", "-36px") 
        .attr("xlink:href", function (d) { 
        return d.img_hrefD 
       }); 
      } 

      if (d.entity == "company" || d.entity == "employee") { 

       d3.select(this).select('circle') 
           .transition() 
           .duration(300) 
           .attr("r",18) 
      } 

     }); 

     force.on("tick", function() { 
      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 + ")"; }); 
     }); 
    //}); 

: http://jsfiddle.net/dzorz/6pHkn/

날 귀찮게 코드의 일부가 마우스 오버입니다 :

내 코드는 다음과 같습니다

else if(d.entity == "employee"){ 

    d3.select(this).select('text') 
       .transition() 
     .duration(300) 
     .text(function(d){return d.prefix + ' ' + d.fst_name + ' ' + d.snd_name}) 
     .style("font-size","8px") 

} 

사이에 줄 바꿈을 추가하고 싶습니다.과 d.snd_name 그리고 나는 '\n''<\br>'으로 시도했지만 내가 원하는 것을하지 못했습니다 ...

텍스트에 줄 바꿈을 추가하는 방법은 어느 것입니까? 어떤 제안을 환영합니다

당신은 내 위의 링크 jsfiddle 편집 할 수 있습니다

... 여기

+0

[이 질문에] (http://stackoverflow.com/questions/13049050/can-you-insert-a-line-break-in-text-when-using-d3-js) 도움이 될 수 있습니다. –

+0

이 방법을 사용해 보았지만 구현 방법을 모르지만 .html에 오류가있어 누군가가 나를 보여 줄 수 있다고 생각했습니다 – dzordz

+0

[예 : 이 질문에] (http://stackoverflow.com/questions/11007640/fit-text-into-svg-element-using-d3-js). –

답변

5

때문에 그것이 습관이 힘 물건 작동 어떤 이유로 SVG 내부 HTML을 사용하지 않고 대답.

else if(d.entity == "employee"){ 
       var asdf = d3.select(this); 
       asdf.select('text').remove(); 

       asdf.append("text") 
          .text(function(d){return d.prefix + ' ' + d.fst_name }) 
          .attr("class","nodetext") 
          .attr("dx", 0) 
          .attr("dy", ".35em") 
          .style("font-size","5px") 
          .attr("text-anchor", "middle") 
          .style("fill", "white") 
          .transition() 
          .duration(300) 
          .style("font-size","12px"); 

       asdf.append("text").text(function(d){return d.snd_name }) 
          .attr("class","nodetext") 
          .attr("transform","translate(0, 12)") 
          .attr("dx", 0) 
          .attr("dy", ".35em") 
          .style("font-size","5px") 
          .attr("text-anchor", "middle") 
          .style("fill", "white") 
          .transition() 
          .duration(300) 
          .style("font-size","12px");           
      } 

Jsfiddle 예 : http://jsfiddle.net/cuckovic/FWKt5/

+1

당신의 대답 사람을 사랑해! :) – dzordz

+0

고마워요, 제 대답이 도움이 되었기 때문에 기쁩니다. – cuckovic

3

위의 대답은 아름다운이지만, 단지 다양한을 위해, 여기에 자동으로이 작업을 수행 할 것이다 작성 단지 텍스트 감싸기 기능도있다. 원래의 표현은 차트에 특별히 레이블을 붙이기위한 것이지만, 원하는 것을하기 위해 그것을 조작 할 수 있습니다. http://bl.ocks.org/mbostock/7555321