chart = {
const svg = d3.create("svg").attr("viewBox", [0, 0, width, 200]);
let rechteck = svg
.append('rect')
.attr('x', 10)
.attr('y', 10)
.attr('width', 100)
.attr('height', 180)
.style('fill', 'steelblue');
rechteck.on('mouseover', function() {
d3.select(this).style('fill', 'tomato');
});
rechteck.on('mouseout', function() {
d3.select(this).style('fill', 'steelblue');
});
rechteck.on('click', function() {
if (d3.select(this).attr('x') < width - 110) {
d3.select(this)
.transition()
.ease(d3.easeBounce)
.attr('x', width - 110);
} else {
d3.select(this)
.transition()
.ease(d3.easeBounce)
.attr('x', 10);
}
});
return svg.node();
}