I have the doubt, I put the image inside the circle but it repeats, what am I doing wrong?
container.append('svg:pattern')
.attr("id", "img_cirle")
.attr("width", 50)
.attr("height", 50)
.attr("patternUnits", "userSpaceOnUse")
.append("svg:image")
.attr("xlink:href", 'img/botonrojo.png')
.attr("width", 50)
.attr("height", 50)
.attr("x", 0)
.attr("y", 0);
container.append("circle")
.attr("cx", 0)
.attr("cy", 0)
.attr("r", 80)
.style({"fill":"url(#img_cirle)","cursor":"pointer"});*/