Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get y coordinate of point along SVG path with given an x coordinate

I am using raphael.js to draw a simple SVG line graph like this:

line graph

When the user hovers the graph, id like to display a popover pointing to the line at the X position of the cursor, and at the Y position where the line is for that X position like so:

cursors with popovers along the line

I need to take the path and find the Y coordinate for a given X coordinate.

like image 747
Hippocrates Avatar asked Mar 22 '13 19:03

Hippocrates


1 Answers

Based on @Duopixel's D3 solution, I wrote the following function for my own use, in pure javascript using DOM API:

function findY(path, x) {
  var pathLength = path.getTotalLength()
  var start = 0
  var end = pathLength
  var target = (start + end) / 2

  // Ensure that x is within the range of the path
  x = Math.max(x, path.getPointAtLength(0).x)
  x = Math.min(x, path.getPointAtLength(pathLength).x)

  // Walk along the path using binary search 
  // to locate the point with the supplied x value
  while (target >= start && target <= pathLength) {
    var pos = path.getPointAtLength(target)

    // use a threshold instead of strict equality 
    // to handle javascript floating point precision
    if (Math.abs(pos.x - x) < 0.001) {
      return pos.y
    } else if (pos.x > x) {
      end = target
    } else {
      start = target
    }
    target = (start + end) / 2
  }
}
like image 79
Wei Avatar answered Oct 20 '22 17:10

Wei