Skip to content

Commit 266b246

Browse files
author
Sebastian Flick
committed
implement brush
1 parent 668027d commit 266b246

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

src/routes/Brush.svelte

+22
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@
2020
*/
2121
let gy;
2222
23+
/**
24+
* @type {SVGGElement}
25+
*/
26+
let gBrush;
27+
2328
export let data = [
2429
{
2530
label: 'D',
@@ -75,6 +80,22 @@
7580
$: x = d3.scaleLinear([DATA_MIN, DATA_MAX], [marginLeft, width - marginRight]);
7681
$: d3.select(gy).call(d3.axisLeft(y));
7782
$: d3.select(gx).call(d3.axisBottom(x));
83+
84+
$: brush = d3
85+
.brushX()
86+
.extent([
87+
[marginLeft, 0],
88+
[width - marginRight, height - marginBottom - marginTop]
89+
])
90+
.on('brush', (/** @type {{ selection: [number, number]; }} */ e) => {
91+
const selection = e.selection;
92+
const start = x.invert(selection[0]);
93+
const end = x.invert(selection[1]);
94+
console.log(start, end);
95+
});
96+
$: d3.select(gBrush)
97+
.call(brush)
98+
.call(brush.move, [x(DATA_MIN), x(100)]);
7899
</script>
79100

80101
<svg {width} {height}>
@@ -95,4 +116,5 @@
95116
{/each}
96117
</g>
97118
{/each}
119+
<g bind:this={gBrush} transform="translate(0,{marginTop})" />
98120
</svg>

0 commit comments

Comments
 (0)