Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a set of data that I am plotting in a scatter. When I mouseover one of the circles I would like it to popup with data (like x, y values, maybe more). Here is what I tried using:

vis.selectAll("circle")
   .data(datafiltered).enter().append("svg:circle")
   .attr("cx", function(d) { return x(d.x);})
   .attr("cy", function(d) {return y(d.y)})
   .attr("fill", "red").attr("r", 15)
   .on("mouseover", function() {
        d3.select(this).enter().append("text")
            .text(function(d) {return d.x;})
            .attr("x", function(d) {return x(d.x);})
            .attr("y", function (d) {return y(d.y);}); });

I suspect I need to be more informative about what data to enter?

share|improve this question
I've also tried: vis.selectAll("circle").each(function (d) { vis.append("svg:text").attr("x", d.x).attr("y", d.y) .text(function (d) { return d.x; }); }); to no avail alas. – ScottieB May 29 '12 at 19:22

1 Answer

up vote 18 down vote accepted

I assume that what you want is a tooltip. The easiest way to do this is to append an svg:title element to each circle, as the browser will take care of showing the tooltip and you don't need the mousehandler. The code would be something like

vis.selectAll("circle")
   .data(datafiltered).enter().append("svg:circle")
   ...
   .append("svg:title")
   .text(function(d) { return d.x; });

If you want fancier tooltips, you could use tipsy for example. See here for an example.

share|improve this answer
1  
I like tipsy. My only issue now is that it points to the upper left corner of the circle, rather than the edge as in that demo. I'm not finding any obvious reason why. jsfiddle.net/scottieb/JwaaV (tipsy at very bottom) – ScottieB May 29 '12 at 21:08
That jsfiddle doesn't seem to have any tooltips? – Lars Kotthoff May 29 '12 at 21:13
You are correct! I meant: jsfiddle.net/scottieb/8DDVN/2 – ScottieB May 29 '12 at 21:18
You could try adding the tooltip to an svg:g that you overlay with the actual circle, but give zero width and height. Currently it's taking the bounding box and putting the tooltip at the edge. Playing around with tipsy's options might help as well. – Lars Kotthoff May 30 '12 at 7:50
So that works for my jsfiddle, but I cannot for the life of me even get the tooltip working on d3 in asp.net (no problem working off a button though). stackoverflow.com/q/10817622/1052985 – ScottieB May 30 '12 at 13:47

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.