chart = {
const svg = d3.select(DOM.svg(width, height))
const g = svg.attr('width', width + margin.left)
.attr('height', height + margin.top + margin.bottom)
.append('g')
.attr('transform', 'translate(' + margin.left + ',0)')
g.append('g')
.attr('transform', 'translate(0,' + height + ')')
.call(d3.axisBottom(x_scale))
.selectAll('text')
.style('text-anchor', 'end')
.attr('dx', '-.8em')
.attr('dy', '-.55em')
.attr('transform', 'rotate(-90)' );
g.append('g')
.attr('class', 'y axis')
.call(d3.axisLeft(y_scale))
.append('text')
.attr('transform', 'rotate(-90)')
.attr('y', 6)
.attr('dy', '.71em')
.style('text-anchor', 'end')
.text('Value ($)');
g.selectAll('bar')
.data(data)
.enter().append('rect')
.style('fill',(d) => d.value > 1.6 ? '#7E349D' :'#BE90D4')
.attr('x',(d) => x_scale(d.date) + 10)
.attr('width', 16)
.attr('y', (d, i) => height)
.attr('height', 0)
.transition()
.duration(50)
.delay((d, i) => i * 5)
.attr('y',(d) => y_scale(d.value))
.attr('height',(d) => height - y_scale(d.value))
return svg.node()
}