簡體   English   中英

如何在圓圈之間畫線?

[英]How to draw lines between circles?

我正在准備繪制三個圓圈並在每個圓圈之間繪制連接線。

最終目標是配置使用json配置連接的圈子,但在此之前我只是嘗試使用回調和硬代碼值連接圈子。

這是我到目前為止:

<!DOCTYPE html>
<html>
  <head>
      <script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
   </head>
<body style="overflow: hidden;">
<div id="canvas"  style="overflow: hidden;"></div>

<script type="text/javascript">
    var graph = {
        "nodes":[
            {"name":"1","group":1, "x" : 100, "y" : 100 , r : 20},
            {"name":"2","group":1, "x" : 200, "y" : 150 ,r : 30},
            {"name":"3","group":2 , "x" : 300, "y" : 250 , r : 50}
        ],
        "links":[
            {"source":1,"target":0,"value":1}
        ]
    }

    var width = 2000;
    var height = 500;

    var svg = d3.select("#canvas").append("svg")
            .attr("width", width)
            .attr("height", height)
        .append("g");

    var lines = svg.attr("class", "line")
            .selectAll("line").data(graph.links)
            .enter().append("line")
            .attr("x1", function(d) { return 50 })
            .attr("y1", function(d) { return 50 })
            .attr("x2", function(d) { return 100 })
            .attr("y2", function(d) {  return 100 })

    var circles = svg.selectAll("circle")
            .data(graph.nodes)
            .enter().append("circle")
            .style("stroke", "gray")
            .style("fill", "white")
            .attr("r", function(d, i){ return d.r })
            .attr("cx", function(d, i){ return d.x })
            .attr("cy", function(d, i){ return d.y })

</script>
</body>
</html>

但是沒有畫線。 每個圓圈應包含一條連接到另一個圓圈的線條。 我只是對x1,y1,x2,y2坐標進行硬編碼,但我將使用其他圓的坐標來確定線的位置。 為什么沒有繪制線條? 我應該使用標准的d3方法來連接這些圈子嗎?

小提琴: http//jsfiddle.net/zzz8svuq/10/

更新:

以下是更新的代碼,用於在數據集graph.nodes中配置的圓之間繪制連接線:

<!DOCTYPE html>
<html>
  <head>
      <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
      <script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
   </head>
<body style="overflow: hidden;">
<div id="canvas"  style="overflow: hidden;"></div>

<script type="text/javascript">

    var graph = {
        "nodes": [
            {name: "1", "group": 1, x: 100, y: 50, r: 10 , connected : "2"},
            {name: "2", "group": 1, x: 200, y: 90, r: 15, connected : "1"},
            {name: "3", "group": 2, x: 300, y: 230, r: 25, connected : "1"}
        ] 
    }


    $( document ).ready(function() {

        var width = 2000;
        var height = 500;

        var svg = d3.select("#canvas").append("svg")
                .attr("width", width)
                .attr("height", height)
                .append("g");

        var lines = svg.attr("class", "line")
                .selectAll("line").data(graph.nodes)
                .enter().append("line")
                .style("stroke", "gray") // <<<<< Add a color
                .attr("x1", function (d, i) {
                    return d.x
                })
                .attr("y1", function (d) {
                    return d.y
                })
                .attr("x2", function (d) {
                    return findAttribute(d.connected).x
                })
                .attr("y2", function (d) {
                    return findAttribute(d.connected).y
                })

        var circles = svg.selectAll("circle")
                .data(graph.nodes)
                .enter().append("circle")
                .style("stroke", "gray")
                .style("fill", "white")
                .attr("r", function (d, i) {
                    return d.r
                })
                .attr("cx", function (d, i) {
                    return d.x
                })
                .attr("cy", function (d, i) {
                    return d.y
                });

    });

    function findAttribute(name) {
        for (var i = 0, len = graph.nodes.length; i < len; i++) {
            if (graph.nodes[i].name === name)
                return graph.nodes[i]; // Return as soon as the object is found
        }
        return null; // The object was not found
    }


</script>
</body>
</html>

您需要確保線條具有筆觸顏色,否則它們將被繪制為白色,您將無法看到它們。

 var lines = svg.attr("class", "line")
            .selectAll("line").data(graph.links)
            .enter().append("line")
            .style("stroke", "gray") // <<<<< Add a color
            .attr("x1", function(d) { return 50 })
            .attr("y1", function(d) { return 50 })
            .attr("x2", function(d) { return 100 })
            .attr("y2", function(d) {  return 100 })

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM