File tree 1 file changed +22
-0
lines changed
1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 20
20
*/
21
21
let gy;
22
22
23
+ /**
24
+ * @type {SVGGElement}
25
+ */
26
+ let gBrush;
27
+
23
28
export let data = [
24
29
{
25
30
label: ' D' ,
75
80
$: x = d3 .scaleLinear ([DATA_MIN , DATA_MAX ], [marginLeft, width - marginRight]);
76
81
$: d3 .select (gy).call (d3 .axisLeft (y));
77
82
$: 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 )]);
78
99
</script >
79
100
80
101
<svg {width } {height }>
95
116
{/each }
96
117
</g >
97
118
{/each }
119
+ <g bind:this ={gBrush } transform ="translate(0, {marginTop })" />
98
120
</svg >
You can’t perform that action at this time.
0 commit comments