Could someone explain me how to merge multiple paths from a group into one single path.All paths are absolute (capital letters).
pathGroup.append("path")
.attr("d", "M25, 60 C100, 0 25, -10 25, 15 C25, -10 - 50, 0 25, 60 Z")
pathGroup.append("path")
.attr("d", "M55, 60 C100, 0 15, -10 25, 45 C25, -10 - 50, 0 100, 60 Z")
pathGroup.append("path")
.attr("d", "M100, 60 C44, 0 15, -10 25, 45 C25, -10 - 50, 0 100, 60 Z")
//pathGroup.each create a single path ?
Is it possible to iterate through the element with an .each statement and sum all of them ? I have set a fiddle to show my question. http://jsfiddle.net/5Td4Q/3/