代码之家  ›  专栏  ›  技术社区  ›  Pandiyan Cool

文本与gojs树图中的箭头重叠

  •  1
  • Pandiyan Cool  · 技术社区  · 6 年前

    我目前正在使用gojs创建树结构图

    我在安排节点时遇到问题,文本与箭头重叠

    非常感谢您的建议/帮助

    myDiagram.nodeTemplate =
    $(go.Node, "Auto", {
        movable: true
      },
      $(go.Panel, "Vertical",
    
        $(go.Panel, "Auto", {
            background: "white"
          }, {
            portId: ""
          },
          $(go.Shape, "Circle", {
              strokeWidth: 4,
              margin: go.Margin.parse("10 5 10 5"),
              height: 75,
              width: 75,
              cursor: "pointer"
            },
            new go.Binding("fill", "color"), new go.Binding("stroke", "strokeColor")
          ),
    
          $(go.Panel, "Vertical",
            $(go.Picture, {
              source: "https://msdnshared.blob.core.windows.net/media/2017/05/icon.png",
              background: "white",
              width: 25,
              height: 25
            })
          )
        ),
    
        $(go.Panel, "Auto",
          $(go.TextBlock, {
              margin: 5,
              font: '14px "Open Sans", sans-serif'
            },
            new go.Binding("text", "name"))
        )
      )
    
    );
    

    我的工作 fiddle is available

    1 回复  |  直到 6 年前