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

What is an effective way to bring an SVG element to the top of the z-order, using the D3 library?

My specific scenario is a pie chart which highlights (by adding a stroke to the path) when the mouse is over a given piece. The code block for generating my chart is below:

svg.selectAll("path")
    .data(d)
  .enter().append("path")
    .attr("d", arc)
    .attr("class", "arc")
    .attr("fill", function(d) { return color(d.name); })
    .attr("stroke", "#fff")
    .attr("stroke-width", 0)
    .on("mouseover", function(d) {
        d3.select(this)
            .attr("stroke-width", 2)
            .classed("top", true);
            //.style("z-index", 1);
    })
    .on("mouseout", function(d) {
        d3.select(this)
            .attr("stroke-width", 0)
            .classed("top", false);
            //.style("z-index", -1);
    });

I've tried a few options, but no luck so far. Using style("z-index") and calling classed both did not work.

The "top" class is defined as follows in my CSS:

.top {
    fill: red;
    z-index: 100;
}

The fill statement is there to make sure I knew it was turning on/off correctly. It is.

I've heard using sort is an option, but I'm unclear on how it would be implemented for bringing the "selected" element to the top.

UPDATE:

I fixed my particular situation with the following code, which adds a new arc to the SVG on the mouseover event to show a highlight.

svg.selectAll("path")
    .data(d)
  .enter().append("path")
    .attr("d", arc)
    .attr("class", "arc")
    .style("fill", function(d) { return color(d.name); })
    .style("stroke", "#fff")
    .style("stroke-width", 0)
    .on("mouseover", function(d) {
        svg.append("path")
          .attr("d", d3.select(this).attr("d"))
          .attr("id", "arcSelection")
          .style("fill", "none")
          .style("stroke", "#fff")
          .style("stroke-width", 2);
    })
    .on("mouseout", function(d) {
        d3.select("#arcSelection").remove();
    });
share|improve this question

2 Answers

up vote 5 down vote accepted

One of the solutions presented by the developer is: "use D3's sort operator to reorder the elements." (see https://github.com/mbostock/d3/issues/252)

In this light, one might sort the elements by comparing their data, or positions if they were dataless elements:

.on("mouseover", function(d) {
    svg.selectAll("path").sort(function (a, b) { // select the parent and sort the path's
      if (a.id != d.id) return -1;               // a it's not the hovered element, send "a" to the back
      else return 1;                             // a it's the hovered element, bring "a" to the front
  });
})
share|improve this answer
This not only works on the Z order, it also doesn't upset any dragging that has just started with the element being raised. – Oliver Bock Dec 19 '12 at 4:41
it doesn't work for me too. a,b seems to be only the data, not the d3 selection element or DOM element – nkint Mar 11 at 15:38

SVG doesn't do z-index. Z-order is dictated by the order of the SVG DOM elements in their container.

As far as I could tell (and I've tried this a couple of times in the past), D3 doesn't provide methods for detaching and reattaching a single element in order to bring it to the front or whatnot.

There is an .order() method (https://github.com/mbostock/d3/wiki/Selections#wiki-order), which reshuffles the nodes to match the order they appear in the selection. In your case, you need to bring a single element to the front. So, technically, you could resort the selection with the desired element in front (or at the end, can't remember which is topmost), and then call order() on it.

Or, you could skip d3 for this task and use plain JS (or jQuery) to re-insert that single DOM element.

share|improve this answer
3  
Do note that there are issues with removing/inserting elements inside a mouseover handler in some browsers, it can lead to mouseout events not being sent properly, so I'd recommend trying this in all browsers to make sure it works as you expect. – Erik Dahlström Nov 28 '12 at 10:12
Wouldn't altering the order also change the layout of my pie chart? I'm also digging around jQuery to learn how to re-insert elements. – Evil Closet Monkey Nov 28 '12 at 21:51
I've updated my question with my solution I picked out, which doesn't actually utilize the core of the original question. If you see anything really bad about this solution I welcome comments! Thank you for insight on the original question. – Evil Closet Monkey Nov 28 '12 at 22:13
Seems like a reasonable approach, mainly thanks to the fact that the overlaid shape doesn't have a fill. If it did, I'd expect it to "steal" the mouse event the moment it appeared. And, I think @ErikDahlström's point still stands: this could still be an issue in some browsers (IE9 primarily). For extra "safety" you could add .style('pointer-events', 'none') to the overlaid path. Unfortunately, this property doesn't do anything in IE, but still.... – meetamit Nov 29 '12 at 18:37
@EvilClosetMonkey Hi... This question gets a lot of views, and I believe futurend's answer below is more helpful than mine. So, perhaps consider changing the accepted answer to futurend's, so it appears higher up. – meetamit 2 days ago

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.