score:97

Accepted answer

update 6/4/14

see also mike bostock's answer here for changes in d3 v.3 and the related example. i think this probably supersedes the answer below.

update 2/18/2014

i think @ahaarnos's answer is preferable if you want the entire svg to pan and zoom. the nested g elements in my answer below are really only necessary if you have non-zooming elements in the same svg (not the case in the original question). if you do apply the behavior to a g element, then a background rect or similar element is required to ensure that the g receives pointer events.

original answer

i got this working based on the zoom-pan-transform example - you can see my jsfiddle here: http://jsfiddle.net/nrabinowitz/qmkm3/

it was a bit more complex than i had hoped - you have to nest several g elements to get it to work, set the svg's pointer-events attribute to all, and then append a background rectangle to receive the pointer events (otherwise it only works when the pointer is over a node or link). the redraw function is comparatively simple, just setting a transform on the innermost g:

var vis = d3.select("#chart")
  .append("svg:svg")
    .attr("width", w)
    .attr("height", h)
    .attr("pointer-events", "all")
  .append('svg:g')
    .call(d3.behavior.zoom().on("zoom", redraw))
  .append('svg:g');

vis.append('svg:rect')
    .attr('width', w)
    .attr('height', h)
    .attr('fill', 'white');

function redraw() {
  console.log("here", d3.event.translate, d3.event.scale);
  vis.attr("transform",
      "translate(" + d3.event.translate + ")"
      + " scale(" + d3.event.scale + ")");
}

this effectively scales the entire svg, so it scales stroke width as well, like zooming in on an image.

there is another example that illustrates a similar technique.

score:0

i got a solution for d3 force directed graph with zooming option.

    var m = [40, 240, 40, 240],
    width = 960,
    height = 700,
    root;
var svg = d3.select("body").append("svg")
    .attr("class", "svg_container")
    .attr("width", width)
    .attr("height", height)
    .style("overflow", "scroll")
    .style("background-color", "#eeeeee")
    .append("svg:g")
    .attr("class", "drawarea")
    .append("svg:g")
    .attr("transform", "translate(" + m[3] + "," + m[0] + ")");

//applying zoom in&out for svg
d3.select("svg") 
.call(d3.behavior.zoom()
    .scaleextent([0.5, 5])
    .on("zoom", zoom));

//zooming 
function zoom() { //zoom in&out function 
    var scale = d3.event.scale,
        translation = d3.event.translate,
        tbound = -height * scale,
        bbound = height * scale,
        lbound = (-width + m[1]) * scale,
        rbound = (width - m[3]) * scale;
    // limit translation to thresholds
    translation = [
        math.max(math.min(translation[0], rbound), lbound),
        math.max(math.min(translation[1], bbound), tbound)
    ];
    d3.select(".drawarea")
        .attr("transform", "translate(" + translation + ")" +
            " scale(" + scale + ")");
}

score:0

if you want to zoom and pan force layout without changing node-size, try below. you can also drag nodes without trembling. this code is based on original force layout example. as for nodes and links data, please refer to original sample data. http://bl.ocks.org/mbostock/4062045

plz note the variables xscale and yscale, the functions dragstarted(), dragged(), and dragended(). function tick() was changed as well.

you can see the result at http://steelblue.tistory.com/9 the language on the site is korean. however you can easily find the result at the third example on the page.

var graph = {
    "nodes": [
      { "name": "myriel", "group": 1 },
      { "name": "napoleon", "group": 1 },
      // ......
      { "name": "mme.hucheloup", "group": 8 }
    ],
    "links": [
      { "source": 1, "target": 0, "value": 1 },
      { "source": 2, "target": 0, "value": 8 },
    // .......
      { "source": 76, "target": 58, "value": 1 }
    ]
};
var width = 640,
    height = 400;
 var color = d3.scale.category20();



var xscale = d3.scale.linear()
        .domain([0, width])
         .range([0, width]);

var yscale = d3.scale.linear()
    .domain([0, height])
   .range([0, height]);
var zoomer = d3.behavior.zoom().x(xscale).y(yscale).scaleextent([0.1, 8]).on("zoom", zoom);
function zoom() {

    tick(); 
};

var drag = d3.behavior.drag()
        .origin(function (d) { return d; })
         .on("dragstart", dragstarted)
        .on("drag", dragged)
        .on("dragend", dragended);

function dragstarted(d) {
    d3.event.sourceevent.stoppropagation();

    d.fixed |= 2;         
}
function dragged(d) {

    var mouse = d3.mouse(svg.node());
    d.x = xscale.invert(mouse[0]);
    d.y = yscale.invert(mouse[1]);
    d.px = d.x;         
    d.py = d.y;
    force.resume();
}

function dragended(d) {

    d.fixed &= ~6;           }

var force = d3.layout.force()
    .charge(-120)
    .linkdistance(30)
    .size([width, height]);

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

svg.call(zoomer);

    force
        .nodes(graph.nodes)
        .links(graph.links)
        .start();

    var link = svg.selectall(".link")
        .data(graph.links)
      .enter().append("line")
        .attr("class", "link")
        .style("stroke-width", function (d) { return math.sqrt(d.value); });

    var node = svg.selectall(".node")
        .data(graph.nodes)
      .enter().append("circle")
        .attr("class", "node")
        .attr("r", 5)
        .style("fill", function (d) { return color(d.group); })
        .call(drag);

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

    force.on("tick",tick);

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

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


    };

score:2

i got my graph to work without the second "svg:g" append.

[...].attr("pointer-events", "all")
     .attr("width", width2)
     .attr("height", height2)
     .append('svg:g')
     .call(d3.behavior.zoom().on("zoom", redraw));

the rest is the same.

score:14

the provided answers work in d3 v2 but not in v3. i've synthesized the responses into a clean solution and resolved the v3 issue using the answer provided here: why does d3.js v3 break my force graph when implementing zooming when v2 doesn't?

first the main code. this is a cleaned up version of @ahaarnos' answer:

    var svg = d3.select("body")
        .append("svg")
        .attr("width", width)
        .attr("height", height)
            .call(d3.behavior.zoom().on("zoom", redraw))
        .append('g');

    function redraw() {
      svg.attr("transform",
          "translate(" + d3.event.translate + ")"
          + " scale(" + d3.event.scale + ")");
    }   

now you have pan and zoom, but you won't be able to drag nodes because the pan functionality will override the drag functionality. so we need to do this:

var drag = force.stop().drag()
.on("dragstart", function(d) {
    d3.event.sourceevent.stoppropagation(); // to prevent pan functionality from 
                                            //overriding node drag functionality.
    // put any other 'dragstart' actions here
});

here's @nrabinowitz' fiddle modified to use this cleaner zoom implementation, but illustrating how d3v3 breaks node drag: http://jsfiddle.net/qmkm3/718/

and here's the same fiddle modified to work with d3v3: http://jsfiddle.net/qmkm3/719/

score:18

why the nested <g>'s?

this code below worked well for me (only one <g>, with no random large white <rect>:

var svg = d3.select("body")
    .append("svg")
      .attr({
        "width": "100%",
        "height": "100%"
      })
      .attr("viewbox", "0 0 " + width + " " + height )
      .attr("preserveaspectratio", "xmidymid meet")
      .attr("pointer-events", "all")
    .call(d3.behavior.zoom().on("zoom", redraw));

var vis = svg
    .append('svg:g');

function redraw() {
  vis.attr("transform",
      "translate(" + d3.event.translate + ")"
      + " scale(" + d3.event.scale + ")");
}

where all the elements in your svg are then appended to the vis element.


Related Query