{
var graph = d3.select("#ma_div").append("svg")
.attr("width", 200)
.attr("height", 100)
.style("border", "solid 1px black")
.append("g")
.attr("transform", "translate(10, 10)");
graph.append("rect")
.attr("x", 0).attr("y", 0)
.attr("width", 50).attr("height", 50)
.style("fill", "red");
graph.append("text")
.attr("x", 75).attr("y", 50)
.text("Voici un graphique")
.style("font-size", ".75em");
}