append(‚HTML-TAG‘), attr(’name‘,’wert‘), style(’name‘,’wert‘)
var circle = svgContainer.append("circle")
.attr("cx", 30)
.attr("cy", 30)
.attr("r", 20)
.style("stroke", "rgba(100,100,100,1)")
.style("fill", "rgba(10,10,10,.5)");
.on("mouseenter", function() {d3.select(this).style("fill", "rgba(255,10,10,.5)");})
.on("mouseleave", function() {d3.select(this).style("fill", "rgba(10,10,10,.5)");})
.on("mouseup", function() {console.log(this);});