-
Notifications
You must be signed in to change notification settings - Fork 24
/
index.html
336 lines (330 loc) · 7.51 KB
/
index.html
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sankey Diagram with Canvas</title>
<style>
canvas {
width: 800px;
height: 400px;
border: 1px solid #ccc;
}
</style>
</head>
<body>
<canvas id="sankeyCanvas"></canvas>
<script>
const canvas = document.getElementById('sankeyCanvas');
const ctx = canvas.getContext('2d');
const dpr = window.devicePixelRatio || 1;
canvas.width = 800 * dpr;
canvas.height = 400 * dpr;
ctx.scale(dpr, dpr);
const sourceData = {
title: '2020 一季报',
nodes: [
{
label: 'Iphone',
key: 'Iphone',
value: '1.77 亿',
rate: 3,
},
{
label: 'Services',
key: 'services',
value: '1.39 亿',
rate: 3,
},
{
label: 'MAC',
key: 'MAC',
value: '1.21 亿',
rate: 2,
},
{
label: 'Ipad',
key: 'Ipad',
value: '1.21 亿',
rate: 1,
},
{
label: 'Other',
key: 'Other',
value: '1.21 亿',
rate: 1,
},
{
label: '营业收入',
key: '营业收入',
value: '1.77 亿',
rate: 10,
},
{
label: '营业成本',
key: '营业成本',
value: '1.39 亿',
rate: 3,
},
{
label: '毛利',
key: '毛利',
value: '1.21 亿',
rate: 7,
},
],
// 链接可能是一对多的关系,所以需要单独定义
links: [
{
source: 'Iphone',
target: '营业收入',
},
{
source: 'Services',
target: '营业收入',
},
{
source: 'MAC',
target: '营业收入',
},
{
source: 'Ipad',
target: '营业收入',
},
{
source: 'Other',
target: '营业收入',
},
{
source: '营业收入',
target: '营业成本',
},
{
source: '营业成本',
target: '毛利',
},
],
};
// 绘制长方形节点
const createRctAngularNode = (params) => {
const { x, y, width, height, color } = params;
ctx.fillStyle = color;
ctx.fillRect(x, y, width, height);
};
// 绘制文本
const createText = (params) => {
const { x, y, text, color, textAlign, font } = params;
ctx.fillStyle = color;
textAlign && (ctx.textAlign = textAlign);
font && (ctx.font = font);
ctx.fillText(text, x, y);
};
// y 从 30 开始
// x 从 10 开始
// 第一个节点
createText({
x: 10,
y: 30,
text: '+3%',
color: '#AFB3B6',
});
createText({
x: 36,
y: 30,
text: 'Iphone',
color: '#000000',
});
createText({
x: 36,
y: 44,
text: '1.77 亿',
font: '500 14px',
color: '#37A0FF',
});
createRctAngularNode({
x: 70,
y: 26,
width: 8,
height: 18,
color: '#37A0FF',
});
// 第二个节点
createText({
x: 1,
y: 70,
text: '+3%',
color: '#AFB3B6',
});
createText({
x: 26,
y: 70,
text: 'Services',
color: '#000000',
});
createText({
x: 36,
y: 84,
text: '1.39 亿',
font: '500 14px',
color: '#37A0FF',
});
createRctAngularNode({
x: 70,
y: 64,
width: 8,
height: 18,
color: '#37A0FF',
});
// 第三个节点
createText({
x: 16,
y: 110,
text: '+3%',
color: '#AFB3B6',
});
createText({
x: 40,
y: 110,
text: 'MAC',
color: '#000000',
});
createText({
x: 36,
y: 124,
text: '1.21 亿',
font: '500 14px',
color: '#37A0FF',
});
createRctAngularNode({
x: 70,
y: 104,
width: 8,
height: 18,
color: '#37A0FF',
});
// 第四个节点
createText({
x: 16,
y: 150,
text: '+3%',
color: '#AFB3B6',
});
createText({
x: 40,
y: 150,
text: 'Ipad',
color: '#000000',
});
createText({
x: 36,
y: 164,
text: '1.21 亿',
font: '500 14px',
color: '#37A0FF',
});
createRctAngularNode({
x: 70,
y: 144,
width: 8,
height: 18,
color: '#37A0FF',
});
// 第五个节点
createText({
x: 16,
y: 190,
text: '+3%',
color: '#AFB3B6',
});
createText({
x: 40,
y: 190,
text: 'Other',
color: '#000000',
});
createText({
x: 36,
y: 204,
text: '1.21 亿',
font: '500 14px',
color: '#37A0FF',
});
createRctAngularNode({
x: 70,
y: 184,
width: 8,
height: 18,
color: '#37A0FF',
});
// 链接节点
createText({
x: 206,
y: 74,
text: '营业收入',
font: '500 14px',
color: '#000000',
});
createText({
x: 250,
y: 74,
text: '+3%',
font: '500 14px',
color: '#AFB3B6',
});
createText({
x: 224,
y: 90,
text: '1.77 亿',
font: '500 16px',
color: '#37A0FF',
});
createRctAngularNode({
x: 224,
y: 96,
width: 16,
height: 42,
color: '#37A0FF',
});
// 连线
ctx.beginPath();
// 从第一个节点的长方形 x,y 开始
ctx.strokeStyle = '#37A0FF'; // 线条颜色
ctx.lineWidth = 2; // 线条宽度
// const startX = 78;
// const startY = 26;
// const endX = 224;
// const endY = 96;
// ctx.moveTo(startX, startY);
// // 第一段三次贝塞尔曲线
// ctx.bezierCurveTo(208, 96, 350, 200, (startX + endX) / 2, (startY + endY) / 2);
// // 第二段三次贝塞尔曲线
// ctx.bezierCurveTo(140, 70, 160, 90, endX, endY);
// ctx.stroke();
// 起点和终点坐标
var startX = 78; // 50
var startY = 26; // 150
var endX = 224; // 450
var endY = 96; // 150
// 控制点坐标
var controlX1 = 190; // 150
var controlY1 = 30; // 50
var controlX2 = 98; // 350
var controlY2 = 110; // 250
// 绘制 S 形曲线
ctx.beginPath();
ctx.moveTo(startX, startY);
// 绘制上半部分曲线
ctx.bezierCurveTo(controlX1, controlY1, controlX2, controlY2, endX, endY);
ctx.lineTo(endX, endY + 12);
// 绘制下半部分曲线
ctx.bezierCurveTo(100, 120, 178, 50, startX, startY + 18);
ctx.lineTo(startX, startY);
// 绘制封闭区域
ctx.closePath();
ctx.fillStyle = '#37A0FF88'; // 填充颜色
// 填充颜色
ctx.fill();
ctx.stroke();
</script>
</body>
</html>