chart = {
const svg = d3.create('svg')
.attr('viewBox', [0, 0, width, height])
svg.append('g')
.call(xAxis)
.attr('transform', `translate(0, ${height - padding.bottom})`)
let bars = svg.append('g')
.selectAll('rect')
return Object.assign(svg.node(), {
update(periods) {
bars = bars
.data(periods, d => d.id)
.join(
enter => enter.append('rect')
.attr('opacity', 0)
.call(bars => bars.transition()
.attr('opacity', 1)),
update => update
.attr('opacity', 1),
exit => exit
.call(bars => bars.transition()
.attr('opacity', 0)
.remove())
)
.attr('x', d => xScale(d.fromDate))
.attr('width', d => xScale(d.toDate) - xScale(d.fromDate))
.attr('height', d => yScale.range()[0] - yScale(1))
.attr('y', d => yScale.range()[1])
.attr('fill', d => d.code in colorsConfig ? colorsConfig[d.code] : '#444')
}
})
}