рони,
Вот так вроде работает
var path = document.getElementById(id);
if (!path){
path = document.createElementNS("http://www.w3.org/2000/svg","path");
document.getElementById("Arrows").appendChild(path);
path.setAttribute("id", id);
path.setAttribute("fill","none");
path.setAttribute("stroke","black");
path.setAttribute("stroke-width","2");
path.setAttribute("maker-end","url(#arrowhead)");
}
path.setAttribute("d", dStr);
Но не рисуются наконечники стрелочек
Что не так?