Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

D3 has a force directed layout here. Is there a way to add zooming to this graph? Currently, I was able to capture the mouse wheel event but am not really sure how to write the redraw function itself. Any suggestions?

    var vis = d3.select("#graph")
        .append("svg:svg")
        .call(d3.behavior.zoom().on("zoom", redraw)) // <-- redraw function
        .attr("width", w)
        .attr("height", h);
share|improve this question
See also this example thisismattmiller.com/blog/add-zoom-slider-to-d3-js by Matt Miller. It only adds a "g" element at the end of the process. – arivero Jun 24 '12 at 3:37
1  
somebody showed how to combine zui53 (a library for zoomable interfaces) and d3js: bl.ocks.org/timelyportfolio/5149102 – widged Mar 13 at 9:16

3 Answers

up vote 48 down vote accepted

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.

share|improve this answer
Thanks! This saved me some time tonight! nolasatellitegovernment.tulane.edu/vis/d3/force/linked.html – jerrygarciuh Oct 27 '11 at 3:06
3  
+1 Beautiful approach. Thank you very much for your time. – Legend Oct 27 '11 at 4:11
1  
@Ogg - I'm not sure what you mean here - jsFiddle just presents your results in an iFrame, not some sort of custom browser, so what you see is real browser behavior. jsFiddle does add some things, e.g. a body tag, so I recommend looking at the frame source and seeing what you're missing. – nrabinowitz Dec 1 '11 at 23:49
1  
@EricStob - that might be a new question. But see jsfiddle.net/56RDx/2 - this simply rescales the font size by the inverse of the zoom scale. – nrabinowitz Oct 10 '12 at 23:51
1  
@ajmartin - see zoom.scaleExtent() – nrabinowitz Nov 27 '12 at 17:20
show 15 more comments

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.

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.