chart = {
const width = 640;
const height = 400;
const margin = {top: 20, right: 30, bottom: 30, left: 40};
const svg = d3.create("svg")
.attr("width", width)
.attr("height", height);
const gback = svg.append("g")
const gfront = svg.append("g")
gfront.selectAll("path")
.data(data_merged.features)
.enter()
.append("path")
.attr("fill", d=> color(d.properties[year]))
.attr("stroke", "#111111")
.attr("d", path)
.append("title").text(d=> d.properties.NAME_FR+" : "+d.properties[year] + "%");
gback.selectAll("path")
.data(world.features)
.enter()
.append("path")
.attr("fill", "#777777")
.attr("stroke", "#111111")
.attr("d", path);
return svg.node();
}