south_asia_department_energy_safeguards_ip_chart = {
const svg = d3.select(DOM.svg(width, height));
svg.append("g")
.attr("fill", "steelblue")
.selectAll("rect").data(sard_safeguards_data_ip).enter().append("rect")
.attr("x", b => x_ip(b.name))
.attr("y", b => y_ip(b.value))
.attr("height", b => y_ip(0) - y_ip(b.value))
.attr("width", x_ip.bandwidth());
svg.append("g")
.call(xAxis_ip);
svg.append("g")
.call(yAxis_ip);
return svg.node();
}