function slider() {
return Object.assign(d3.sliderHorizontal()
.min(0)
.max(10)
.step(1)
.width(width)
.displayValue(false)
.on('onchange', console.log), {
render() {
return d3.create("svg")
.attr("viewBox", [-20, -10, width + 40, 53])
.call(this)
.node();
}
});
}