简体   繁体   English

在arbor.js中为边添加标签(查询插件)

[英]Add label to edges in arbor.js (Query plugin)

How do I add labels to edges in arbor.js It is a graph visualization library. 如何在arbor.js中为边添加标签这是一个图形可视化库。

Suppose A and B are nodes and E is the edge One crude way would be insert a "text node" T and join AT and TB 假设A和B是节点而E是边缘。一种粗略的方式是插入“文本节点”T并加入AT和TB

But i don't want to this, is there any other way? 但我不想这样,还有其他方法吗?

Here's the sample code 这是示例代码

var theUI = {
  nodes:{A:{color:"red", shape:"dot", alpha:1}, 
      B:{color:"#b2b19d", shape:"dot", alpha:1}, 
      C:{color:"#b2b19d", shape:"dot", alpha:1}, 
      D:{color:"#b2b19d", shape:"dot", alpha:1},
  },
  edges:{
      A:{
          B:{length:.8},
          C:{length:.8},
          D:{length:.8}
           }
  }
}

var sys = arbor.ParticleSystem()
sys.parameters({stiffness:900, repulsion:2000, gravity:true, dt:0.015})
sys.renderer = Renderer("#sitemap")
sys.graft(theUI) 

In this, A is connected to B, C and D. How to supply label to edges? 在此,A连接到B,C和D.如何为边缘提供标签?

arbor.js allows you to write a code to render the whole graph. arbor.js允许您编写代码来呈现整个图形。 You can do whatever you want in render method including drawing edges titles which you can store in a separate map. 您可以在渲染方法中执行任何操作,包括绘制可以存储在单独地图中的边标题。

Just override method render in Renderer this way: 只需在Renderer中以这种方式覆盖方法:

redraw:function()
{
    ctx.fillStyle = "white";
    ctx.fillRect (0,0, canvas.width, canvas.height);

    particleSystem.eachEdge (function (edge, pt1, pt2)
    {
        ctx.strokeStyle = "rgba(0,0,0, .333)";
        ctx.lineWidth = 1;
        ctx.beginPath ();
        ctx.moveTo (pt1.x, pt1.y);
        ctx.lineTo (pt2.x, pt2.y);
        ctx.stroke ();

        ctx.fillStyle = "black";
        ctx.font = 'italic 13px sans-serif';
        ctx.fillText (edge.data.name, (pt1.x + pt2.x) / 2, (pt1.y + pt2.y) / 2);

    });

    particleSystem.eachNode (function (node, pt)
    {
        var w = 10;
        ctx.fillStyle = "orange";
        ctx.fillRect (pt.x-w/2, pt.y-w/2, w,w);
        ctx.fillStyle = "black";
        ctx.font = 'italic 13px sans-serif';
        ctx.fillText (node.name, pt.x+8, pt.y+8);
    });       
   };

This code expected data property of each edge to be filled while initialization. 此代码期望在初始化时填充每个边的数据属性。

I create all nodes and edges manually using my custom map and methods addNode/addEdge, bu I suppose you can change a little your code to initialize edges with custom data this way: 我使用自定义地图和方法addNode / addEdge手动创建所有节点和边缘,我想你可以改变一点代码来用这种方式用自定义数据初始化边:

var theUI = {
  nodes:{A:{color:"red", shape:"dot", alpha:1}, 
      B:{color:"#b2b19d", shape:"dot", alpha:1}, 
      C:{color:"#b2b19d", shape:"dot", alpha:1}, 
      D:{color:"#b2b19d", shape:"dot", alpha:1},
  },
  edges:{
      A:{
          B:{length:.8, data:{name:"A->B"}},
          C:{length:.8, data:{name:"A->C"}},
          D:{length:.8, data:{name:"A->D"}}
           }
  }
}

PS: take a look at this example , I learned a lot from it. PS:看看这个例子 ,我从中学到了很多东西。

edge.data is {length:.8, data:{name:"A->B"}} so replace the last line of the method particleSystem.eachEdge() with the following code edge.data{length:.8, data:{name:"A->B"}}所以用下面的代码替换方法particleSystem.eachEdge()的最后一行

 ctx.fillText (edge.data.data.name, (pt1.x + pt2.x) / 2, (pt1.y + pt2.y) / 2); 

which worked for me. 这对我有用。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM