I'm looking at this formula:
http://www.w3.org/TR/SVG/paths.html#PathDataMovetoCommands
And here is how I draw it:
chart.renderer.path(['M', someNumber, 10, 'V', 1500, 0]) .attr({ 'stroke-width': 2, stroke: 'red', id: 'vert' }) .add();
And the line is drawn but it goes through the whole graph. I want it to be small. I think that to make it smaller i need to change the '10' but whatever value I put (even 10.000) the line's length remains the same.