chart = {
const width = 500;
const height = 500;
const svg = d3.select(DOM.svg(width, height));
const colorDomain = d3.extent(boroughProfiles, d=>Number(d['Median House Price, 2014']));
console.log(colorDomain);
const colorScale = d3.scaleSequential(d3.interpolateLab("#19C1DF", "#F52D4F"))
.domain(colorDomain);
const LS = atf.londonSquared()
.data(boroughProfiles, d=>d.Code)
.width(width)
.height(height);
svg.call(LS);
LS.background()
.attr('fill',d=>colorScale(d.data['Median House Price, 2014']))
LS.foreground()
.append('text')
.attr('fill','#000')
.attr('dy',15)
.attr('dx',3)
.text(d => d.LSAbbreviation);
return svg.node();
}