-
Notifications
You must be signed in to change notification settings - Fork 0
/
chartxy
234 lines (222 loc) · 6.81 KB
/
chartxy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<template>
<div>
<div id="chart-container"></div>
<n-button @click="brush">框选区域放大</n-button>
<n-button @click="brushX">x轴放大</n-button>
<n-button @click="brushY">y轴放大</n-button>
<!-- <n-button @click="pre">上一步</n-button>
<n-button @click="next">下一步</n-button> -->
<n-button @click="zoomWheel">zoom滚动方法缩小(后期拆分)</n-button>
</div>
</template>
<script setup lang="ts" name="Chart">
import * as d3 from "d3";
import { dataAll } from "./data.ts";
import { onMounted, ref } from "vue";
const width = ref(600);
const height = ref(500);
const marginLeft = ref(50);
const marginRight = ref(30);
const marginBottom = ref(30);
const marginTop = ref(30);
let svg: any; // 保存 SVG 元素
let target: any;
let gx: any;
let gy: any;
let x: any;
let y: any;
let xAxis: any;
let yAxis: any;
let line: any;
let brushSelector: any; // 保存 brush 选择器
let brushSelectorX: any;
let brushSelectorY: any;
let zoomSelector: any;
onMounted(() => {
createSvg(dataAll);
});
const createSvg = (dataAll: { time: number; data: number }[]) => {
svg = d3
.select("#chart-container")
.append("svg")
.attr("width", width.value)
.attr("height", height.value)
.attr("viewBox", [0, 0, width.value, height.value])
.property("value", []);
// 比例尺 坐标轴
x = d3
.scaleLinear()
.domain(d3.extent(dataAll, (d: any) => d.time)) //定义域
.range([marginLeft.value, width.value - marginRight.value]); //值域
xAxis = (g: any, x: any) =>
g
.attr("transform", `translate(0,${height.value - marginBottom.value})`)
.call(d3.axisBottom(x));
y = d3
.scaleLinear()
.domain(d3.extent(dataAll, (d: any) => d.data)) // d3.extent()数组范围程度
.range([height.value - marginBottom.value, marginTop.value]); //y轴画线从上到下
yAxis = (g: any, y: any) =>
g
.attr("transform", `translate(${marginLeft.value},0)`)
.call(d3.axisLeft(y));
// 折线
line = (linedata: any, x: any, y: any) =>
d3
.line()
.x((d: any) => x(d.time))
.y((d: any) => y(d.data))(linedata);
// 坐标轴位置
gx = svg.append("g").call(xAxis, x);
gy = svg.append("g").call(yAxis, y);
// 建立可视区域 生效了但是path没有被剪切不知道为什么=
// >找到问题:问题不在这,已经建立了剪切路径,是在zoom时path范围问题 已解决:在zoom中直接操作path
svg
.append("clipPath")
.attr("id", "clipRect")
.append("rect")
.attr("x", marginLeft.value)
.attr("y", marginBottom.value)
.attr("width", width.value - marginLeft.value - marginRight.value)
.attr("height", height.value - marginTop.value - marginBottom.value);
//线
target = svg
.append("path")
.attr("clip-path", "url(#clipRect)")
.attr("fill", "none")
.attr("stroke", "red")
.attr("stroke-linejoin", "round")
.attr("stroke-linecap", "round")
.attr("stroke-width", 1.5)
.attr("d", line(dataAll, x, y));
zoomSelector = d3
.zoom()
.scaleExtent([
width.value / (width.value + marginRight.value + marginLeft.value),
Infinity
]) //限定缩小范围比框小点
.translateExtent([
[0, 0],
[width.value - marginRight.value, height.value - marginBottom.value]
])
.on("zoom", onZoom);
brushSelector = d3
.brush()
.extent([
[marginLeft.value, marginBottom.value],
[width.value, height.value - marginBottom.value]
])
.on("start brush", onBrush)
.on("end", onEnd);
// x轴向框选
brushSelectorX = d3
.brushX()
.extent([
[marginLeft.value, marginBottom.value],
[width.value, height.value - marginBottom.value]
])
.on("end", onEndX);
// y轴框选
brushSelectorY = d3
.brushY()
.extent([
[marginLeft.value, marginBottom.value],
[width.value, height.value - marginBottom.value]
])
.on("end", onEndY);
return { brushSelector, zoomSelector, brushSelectorX };
};
function onBrush(event: any) {
if (event.sourceEvent && event.sourceEvent.type === "zoom") return null;
}
function onZoom(event: any) {
if (event.sourceEvent && event.sourceEvent.type === "brush") return null;
const xz = event.transform.rescaleX(x);
const yz = event.transform.rescaleY(y);
console.log(x, y, event);
target.attr("d", line(dataAll, xz, yz));
gx.call(xAxis, xz);
gy.call(yAxis, yz);
}
function onEnd(event: any) {
console.log(event);
if (event.selection) {
const [[x0, y0], [x1, y1]] = event.selection; // 获取选中区域的范围
const xDataRange = [x.invert(x0), x.invert(x1)]; // 获取选中区域在 x 轴上的数据范围
const yDataRange = [y.invert(y1), y.invert(y0)];
console.log(xDataRange, yDataRange);
let newdataAll = filterData(dataAll, xDataRange, yDataRange);
updateSvg(newdataAll);
// svg.call(
// zoomSelector.transform,
// d3.zoomIdentity.translate(-scaledX0, -scaledY0).scale(zoomScale)
// );
}
}
function onEndX(event: any) {
console.log(event);
if (event.selection) {
const [x0, x1] = event.selection; // 获取选中区域的范围
const xDataRange = [x.invert(x0), x.invert(x1)]; // 获取选中区域在 x 轴上的数据范围
console.log(xDataRange);
let newdataAll = filterDataX(dataAll, xDataRange);
updateSvg(newdataAll);
// svg.call(
// zoomSelector.transform,
// d3.zoomIdentity.translate(-scaledX0, -scaledY0).scale(zoomScale)
// );
}
}
function onEndY(event: any) {
if (event.selection) {
const [y0, y1] = event.selection; // 获取选中区域的范围
const yDataRange = [y.invert(y1), y.invert(y0)]; // 获取选中区域在 x 轴上的数据范围
console.log(yDataRange);
let newdataAll = filterDataY(dataAll, yDataRange);
updateSvg(newdataAll);
// svg.call(
// zoomSelector.transform,
// d3.zoomIdentity.translate(-scaledX0, -scaledY0).scale(zoomScale)
// );
}
}
// 按钮事件
const brush = () => {
svg.call(brushSelector);
};
const brushX = () => {
svg.call(brushSelectorX);
};
const brushY = () => {
svg.call(brushSelectorY);
};
const zoomWheel = () => {
svg.call(zoomSelector);
};
// 数据更新时重新绘制 SVG 图
function updateSvg(dataAll: any) {
d3.select("#chart-container").select("svg").remove();
createSvg(dataAll);
}
// 框选计算
function filterData(arr: any, valTime: any, valData: any) {
return arr.filter(
(item: any) =>
item.time >= valTime[0] &&
item.time <= valTime[1] &&
item.data >= valData[0] &&
item.data <= valData[1]
);
}
function filterDataX(arr: any, valTime: any) {
return arr.filter(
(item: any) => item.time >= valTime[0] && item.time <= valTime[1]
);
}
function filterDataY(arr: any, valData: any) {
return arr.filter(
(item: any) => item.data >= valData[0] && item.data <= valData[1]
);
}
</script>
<style scoped></style>