create-bubbles 0.1.2 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (116) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
  3. package/template-react-rsbuild-biome/biome.json +19 -4
  4. package/template-vue-rolldown-oxc/.gitlab-ci.yml +10 -2
  5. package/template-vue-rolldown-oxc/.oxlintrc.json +1 -14
  6. package/template-vue-rolldown-oxc/.vscode/settings.json +11 -0
  7. package/template-vue-rolldown-oxc/README.md +2 -30
  8. package/template-vue-rolldown-oxc/package.json +18 -16
  9. package/template-vue-rolldown-oxc/src/App.vue +12 -2
  10. package/template-vue-rolldown-oxc/src/utils/request/index.ts +1 -3
  11. package/template-vue-rolldown-oxc/src/views/home/index.vue +3 -2
  12. package/template-vue-rolldown-oxc/tsconfig.json +34 -2
  13. package/template-vue-rolldown-oxc/uno.config.ts +2 -5
  14. package/template-vue-rolldown-oxc/vite.config.ts +4 -3
  15. package/template-vue-rsbuild-biome/biome.json +33 -5
  16. package/template-vue-vite-biome/.env +4 -0
  17. package/template-vue-vite-biome/.env.development +1 -0
  18. package/template-vue-vite-biome/.env.production +1 -0
  19. package/template-vue-vite-biome/.gitlab-ci.yml +84 -0
  20. package/template-vue-vite-biome/.vscode/settings.json +10 -0
  21. package/template-vue-vite-biome/README.md +3 -0
  22. package/template-vue-vite-biome/biome.json +109 -0
  23. package/template-vue-vite-biome/commitlint.config.js +1 -0
  24. package/template-vue-vite-biome/index.html +13 -0
  25. package/template-vue-vite-biome/lefthook.yml +11 -0
  26. package/template-vue-vite-biome/package.json +50 -0
  27. package/template-vue-vite-biome/public/vite.svg +1 -0
  28. package/template-vue-vite-biome/src/App.vue +19 -0
  29. package/template-vue-vite-biome/src/assets/icon/vue.svg +1 -0
  30. package/template-vue-vite-biome/src/components/Icon/svg-icon.vue +29 -0
  31. package/template-vue-vite-biome/src/layout/default/index.vue +3 -0
  32. package/template-vue-vite-biome/src/main.ts +15 -0
  33. package/template-vue-vite-biome/src/router/guard/index.ts +7 -0
  34. package/template-vue-vite-biome/src/router/guard/permissionGuard.ts +13 -0
  35. package/template-vue-vite-biome/src/router/index.ts +17 -0
  36. package/template-vue-vite-biome/src/router/modules/index.ts +31 -0
  37. package/template-vue-vite-biome/src/store/index.ts +10 -0
  38. package/template-vue-vite-biome/src/store/modules/user.ts +17 -0
  39. package/template-vue-vite-biome/src/styles/element-plus-variables.css +4 -0
  40. package/template-vue-vite-biome/src/styles/font.scss +0 -0
  41. package/template-vue-vite-biome/src/styles/index.scss +31 -0
  42. package/template-vue-vite-biome/src/styles/variables.scss +3 -0
  43. package/template-vue-vite-biome/src/types/vite-env.d.ts +13 -0
  44. package/template-vue-vite-biome/src/utils/env.ts +10 -0
  45. package/template-vue-vite-biome/src/utils/request/core/index.ts +166 -0
  46. package/template-vue-vite-biome/src/utils/request/core/utils.ts +38 -0
  47. package/template-vue-vite-biome/src/utils/request/index.ts +39 -0
  48. package/template-vue-vite-biome/src/views/home/index.vue +16 -0
  49. package/template-vue-vite-biome/src/views/login/index.vue +11 -0
  50. package/template-vue-vite-biome/src/views/model/index.vue +7 -0
  51. package/{template-vue-rolldown-oxc/tsconfig.app.json → template-vue-vite-biome/tsconfig.json} +15 -4
  52. package/template-vue-vite-biome/uno.config.ts +10 -0
  53. package/template-vue-vite-biome/vite.config.ts +51 -0
  54. package/template-vue-vite-eslint/.env +6 -0
  55. package/template-vue-vite-eslint/.env.development +2 -0
  56. package/template-vue-vite-eslint/.env.production +1 -0
  57. package/template-vue-vite-eslint/.vscode/settings.json +62 -0
  58. package/template-vue-vite-eslint/README.md +3 -0
  59. package/template-vue-vite-eslint/commitlint.config.js +1 -0
  60. package/template-vue-vite-eslint/eslint.config.js +69 -0
  61. package/template-vue-vite-eslint/index.html +13 -0
  62. package/template-vue-vite-eslint/lefthook.yml +11 -0
  63. package/template-vue-vite-eslint/package.json +62 -0
  64. package/template-vue-vite-eslint/public/vite.svg +1 -0
  65. package/template-vue-vite-eslint/src/App.vue +19 -0
  66. package/template-vue-vite-eslint/src/api/index.ts +12 -0
  67. package/template-vue-vite-eslint/src/assets/icon/computer-data.svg +3 -0
  68. package/template-vue-vite-eslint/src/assets/icon/cpu.svg +3 -0
  69. package/template-vue-vite-eslint/src/assets/icon/data-search.svg +3 -0
  70. package/template-vue-vite-eslint/src/assets/icon/home.svg +3 -0
  71. package/template-vue-vite-eslint/src/assets/icon/knowledge-graph.svg +3 -0
  72. package/template-vue-vite-eslint/src/assets/icon/robot.svg +3 -0
  73. package/template-vue-vite-eslint/src/assets/icon/vue.svg +1 -0
  74. package/template-vue-vite-eslint/src/assets/image/.gitkeep +0 -0
  75. package/template-vue-vite-eslint/src/components/Icon/svg-icon.vue +29 -0
  76. package/template-vue-vite-eslint/src/hooks/chart/lib.ts +57 -0
  77. package/template-vue-vite-eslint/src/hooks/chart/useEcharts.ts +65 -0
  78. package/template-vue-vite-eslint/src/layout/default/header/index.vue +12 -0
  79. package/template-vue-vite-eslint/src/layout/default/index.vue +55 -0
  80. package/template-vue-vite-eslint/src/main.ts +17 -0
  81. package/template-vue-vite-eslint/src/router/guard/index.ts +7 -0
  82. package/template-vue-vite-eslint/src/router/guard/permissionGuard.ts +13 -0
  83. package/template-vue-vite-eslint/src/router/index.ts +18 -0
  84. package/template-vue-vite-eslint/src/router/interface.ts +9 -0
  85. package/template-vue-vite-eslint/src/router/modules/example.ts +21 -0
  86. package/template-vue-vite-eslint/src/router/modules/index.ts +79 -0
  87. package/template-vue-vite-eslint/src/store/index.ts +11 -0
  88. package/template-vue-vite-eslint/src/store/modules/user.ts +20 -0
  89. package/template-vue-vite-eslint/src/styles/element-plus-variables.css +3 -0
  90. package/template-vue-vite-eslint/src/styles/font.scss +0 -0
  91. package/template-vue-vite-eslint/src/styles/index.scss +32 -0
  92. package/template-vue-vite-eslint/src/styles/plus-pro-components-variables.css +3 -0
  93. package/template-vue-vite-eslint/src/styles/variables.scss +3 -0
  94. package/template-vue-vite-eslint/src/types/index.d.ts +1 -0
  95. package/template-vue-vite-eslint/src/types/vite-env.d.ts +15 -0
  96. package/template-vue-vite-eslint/src/utils/env.ts +11 -0
  97. package/template-vue-vite-eslint/src/utils/request/core/index.ts +186 -0
  98. package/template-vue-vite-eslint/src/utils/request/core/utils.ts +41 -0
  99. package/template-vue-vite-eslint/src/utils/request/index.ts +42 -0
  100. package/template-vue-vite-eslint/src/views/data-statistics/config.ts +11 -0
  101. package/template-vue-vite-eslint/src/views/data-statistics/index.vue +23 -0
  102. package/template-vue-vite-eslint/src/views/data-statistics/right/abc.vue +11 -0
  103. package/template-vue-vite-eslint/src/views/example/echart/config.ts +1794 -0
  104. package/template-vue-vite-eslint/src/views/example/echart/index.vue +22 -0
  105. package/template-vue-vite-eslint/src/views/example/h-full.vue +24 -0
  106. package/template-vue-vite-eslint/src/views/example/tree-chart.vue +94 -0
  107. package/template-vue-vite-eslint/src/views/home/index.vue +25 -0
  108. package/template-vue-vite-eslint/src/views/knowledge-graph/index.vue +11 -0
  109. package/template-vue-vite-eslint/src/views/login/index.vue +9 -0
  110. package/template-vue-vite-eslint/src/views/model/index.vue +7 -0
  111. package/{template-vue-rolldown-oxc/tsconfig.node.json → template-vue-vite-eslint/tsconfig.json} +20 -9
  112. package/template-vue-vite-eslint/uno.config.ts +21 -0
  113. package/template-vue-vite-eslint/vite.config.ts +62 -0
  114. package/template-vue-rolldown-oxc/components.d.ts +0 -18
  115. package/template-vue-rolldown-oxc/src/types/auto-import.d.ts +0 -78
  116. package/template-vue-rolldown-oxc/src/types/components.d.ts +0 -16
@@ -0,0 +1,1794 @@
1
+ import type { EChartsOption } from 'echarts'
2
+
3
+ export const graph = {
4
+ nodes: [
5
+ {
6
+ id: '0',
7
+ name: 'Myriel',
8
+ symbolSize: 19.12381,
9
+ x: -266.82776,
10
+ y: 299.6904,
11
+ value: 28.685715,
12
+ category: 0,
13
+ },
14
+ {
15
+ id: '1',
16
+ name: 'Napoleon',
17
+ symbolSize: 2.6666666666666665,
18
+ x: -418.08344,
19
+ y: 446.8853,
20
+ value: 4,
21
+ category: 0,
22
+ },
23
+ {
24
+ id: '2',
25
+ name: 'MlleBaptistine',
26
+ symbolSize: 6.323809333333333,
27
+ x: -212.76357,
28
+ y: 245.29176,
29
+ value: 9.485714,
30
+ category: 1,
31
+ },
32
+ {
33
+ id: '3',
34
+ name: 'MmeMagloire',
35
+ symbolSize: 6.323809333333333,
36
+ x: -242.82404,
37
+ y: 235.26283,
38
+ value: 9.485714,
39
+ category: 1,
40
+ },
41
+ {
42
+ id: '4',
43
+ name: 'CountessDeLo',
44
+ symbolSize: 2.6666666666666665,
45
+ x: -379.30386,
46
+ y: 429.06424,
47
+ value: 4,
48
+ category: 0,
49
+ },
50
+ {
51
+ id: '5',
52
+ name: 'Geborand',
53
+ symbolSize: 2.6666666666666665,
54
+ x: -417.26337,
55
+ y: 406.03506,
56
+ value: 4,
57
+ category: 0,
58
+ },
59
+ {
60
+ id: '6',
61
+ name: 'Champtercier',
62
+ symbolSize: 2.6666666666666665,
63
+ x: -332.6012,
64
+ y: 485.16974,
65
+ value: 4,
66
+ category: 0,
67
+ },
68
+ {
69
+ id: '7',
70
+ name: 'Cravatte',
71
+ symbolSize: 2.6666666666666665,
72
+ x: -382.69568,
73
+ y: 475.09113,
74
+ value: 4,
75
+ category: 0,
76
+ },
77
+ {
78
+ id: '8',
79
+ name: 'Count',
80
+ symbolSize: 2.6666666666666665,
81
+ x: -320.384,
82
+ y: 387.17325,
83
+ value: 4,
84
+ category: 0,
85
+ },
86
+ {
87
+ id: '9',
88
+ name: 'OldMan',
89
+ symbolSize: 2.6666666666666665,
90
+ x: -344.39832,
91
+ y: 451.16772,
92
+ value: 4,
93
+ category: 0,
94
+ },
95
+ {
96
+ id: '10',
97
+ name: 'Labarre',
98
+ symbolSize: 2.6666666666666665,
99
+ x: -89.34107,
100
+ y: 234.56128,
101
+ value: 4,
102
+ category: 1,
103
+ },
104
+ {
105
+ id: '11',
106
+ name: 'Valjean',
107
+ symbolSize: 66.66666666666667,
108
+ x: -87.93029,
109
+ y: -6.8120565,
110
+ value: 100,
111
+ category: 1,
112
+ },
113
+ {
114
+ id: '12',
115
+ name: 'Marguerite',
116
+ symbolSize: 4.495239333333333,
117
+ x: -339.77908,
118
+ y: -184.69139,
119
+ value: 6.742859,
120
+ category: 1,
121
+ },
122
+ {
123
+ id: '13',
124
+ name: 'MmeDeR',
125
+ symbolSize: 2.6666666666666665,
126
+ x: -194.31313,
127
+ y: 178.55301,
128
+ value: 4,
129
+ category: 1,
130
+ },
131
+ {
132
+ id: '14',
133
+ name: 'Isabeau',
134
+ symbolSize: 2.6666666666666665,
135
+ x: -158.05168,
136
+ y: 201.99768,
137
+ value: 4,
138
+ category: 1,
139
+ },
140
+ {
141
+ id: '15',
142
+ name: 'Gervais',
143
+ symbolSize: 2.6666666666666665,
144
+ x: -127.701546,
145
+ y: 242.55057,
146
+ value: 4,
147
+ category: 1,
148
+ },
149
+ {
150
+ id: '16',
151
+ name: 'Tholomyes',
152
+ symbolSize: 17.295237333333333,
153
+ x: -385.2226,
154
+ y: -393.5572,
155
+ value: 25.942856,
156
+ category: 2,
157
+ },
158
+ {
159
+ id: '17',
160
+ name: 'Listolier',
161
+ symbolSize: 13.638097333333334,
162
+ x: -516.55884,
163
+ y: -393.98975,
164
+ value: 20.457146,
165
+ category: 2,
166
+ },
167
+ {
168
+ id: '18',
169
+ name: 'Fameuil',
170
+ symbolSize: 13.638097333333334,
171
+ x: -464.79382,
172
+ y: -493.57944,
173
+ value: 20.457146,
174
+ category: 2,
175
+ },
176
+ {
177
+ id: '19',
178
+ name: 'Blacheville',
179
+ symbolSize: 13.638097333333334,
180
+ x: -515.1624,
181
+ y: -456.9891,
182
+ value: 20.457146,
183
+ category: 2,
184
+ },
185
+ {
186
+ id: '20',
187
+ name: 'Favourite',
188
+ symbolSize: 13.638097333333334,
189
+ x: -408.12122,
190
+ y: -464.5048,
191
+ value: 20.457146,
192
+ category: 2,
193
+ },
194
+ {
195
+ id: '21',
196
+ name: 'Dahlia',
197
+ symbolSize: 13.638097333333334,
198
+ x: -456.44113,
199
+ y: -425.13303,
200
+ value: 20.457146,
201
+ category: 2,
202
+ },
203
+ {
204
+ id: '22',
205
+ name: 'Zephine',
206
+ symbolSize: 13.638097333333334,
207
+ x: -459.1107,
208
+ y: -362.5133,
209
+ value: 20.457146,
210
+ category: 2,
211
+ },
212
+ {
213
+ id: '23',
214
+ name: 'Fantine',
215
+ symbolSize: 28.266666666666666,
216
+ x: -313.42786,
217
+ y: -289.44803,
218
+ value: 42.4,
219
+ category: 2,
220
+ },
221
+ {
222
+ id: '24',
223
+ name: 'MmeThenardier',
224
+ symbolSize: 20.95238266666667,
225
+ x: 4.6313396,
226
+ y: -273.8517,
227
+ value: 31.428574,
228
+ category: 7,
229
+ },
230
+ {
231
+ id: '25',
232
+ name: 'Thenardier',
233
+ symbolSize: 30.095235333333335,
234
+ x: 82.80825,
235
+ y: -203.1144,
236
+ value: 45.142853,
237
+ category: 7,
238
+ },
239
+ {
240
+ id: '26',
241
+ name: 'Cosette',
242
+ symbolSize: 20.95238266666667,
243
+ x: 78.64646,
244
+ y: -31.512747,
245
+ value: 31.428574,
246
+ category: 6,
247
+ },
248
+ {
249
+ id: '27',
250
+ name: 'Javert',
251
+ symbolSize: 31.923806666666668,
252
+ x: -81.46074,
253
+ y: -204.20204,
254
+ value: 47.88571,
255
+ category: 7,
256
+ },
257
+ {
258
+ id: '28',
259
+ name: 'Fauchelevent',
260
+ symbolSize: 8.152382000000001,
261
+ x: -225.73984,
262
+ y: 82.41631,
263
+ value: 12.228573,
264
+ category: 4,
265
+ },
266
+ {
267
+ id: '29',
268
+ name: 'Bamatabois',
269
+ symbolSize: 15.466666666666667,
270
+ x: -385.6842,
271
+ y: -20.206686,
272
+ value: 23.2,
273
+ category: 3,
274
+ },
275
+ {
276
+ id: '30',
277
+ name: 'Perpetue',
278
+ symbolSize: 4.495239333333333,
279
+ x: -403.92447,
280
+ y: -197.69823,
281
+ value: 6.742859,
282
+ category: 2,
283
+ },
284
+ {
285
+ id: '31',
286
+ name: 'Simplice',
287
+ symbolSize: 8.152382000000001,
288
+ x: -281.4253,
289
+ y: -158.45137,
290
+ value: 12.228573,
291
+ category: 2,
292
+ },
293
+ {
294
+ id: '32',
295
+ name: 'Scaufflaire',
296
+ symbolSize: 2.6666666666666665,
297
+ x: -122.41348,
298
+ y: 210.37503,
299
+ value: 4,
300
+ category: 1,
301
+ },
302
+ {
303
+ id: '33',
304
+ name: 'Woman1',
305
+ symbolSize: 4.495239333333333,
306
+ x: -234.6001,
307
+ y: -113.15067,
308
+ value: 6.742859,
309
+ category: 1,
310
+ },
311
+ {
312
+ id: '34',
313
+ name: 'Judge',
314
+ symbolSize: 11.809524666666666,
315
+ x: -387.84915,
316
+ y: 58.7059,
317
+ value: 17.714287,
318
+ category: 3,
319
+ },
320
+ {
321
+ id: '35',
322
+ name: 'Champmathieu',
323
+ symbolSize: 11.809524666666666,
324
+ x: -338.2307,
325
+ y: 87.48405,
326
+ value: 17.714287,
327
+ category: 3,
328
+ },
329
+ {
330
+ id: '36',
331
+ name: 'Brevet',
332
+ symbolSize: 11.809524666666666,
333
+ x: -453.26874,
334
+ y: 58.94648,
335
+ value: 17.714287,
336
+ category: 3,
337
+ },
338
+ {
339
+ id: '37',
340
+ name: 'Chenildieu',
341
+ symbolSize: 11.809524666666666,
342
+ x: -386.44904,
343
+ y: 140.05937,
344
+ value: 17.714287,
345
+ category: 3,
346
+ },
347
+ {
348
+ id: '38',
349
+ name: 'Cochepaille',
350
+ symbolSize: 11.809524666666666,
351
+ x: -446.7876,
352
+ y: 123.38005,
353
+ value: 17.714287,
354
+ category: 3,
355
+ },
356
+ {
357
+ id: '39',
358
+ name: 'Pontmercy',
359
+ symbolSize: 6.323809333333333,
360
+ x: 336.49738,
361
+ y: -269.55914,
362
+ value: 9.485714,
363
+ category: 6,
364
+ },
365
+ {
366
+ id: '40',
367
+ name: 'Boulatruelle',
368
+ symbolSize: 2.6666666666666665,
369
+ x: 29.187843,
370
+ y: -460.13132,
371
+ value: 4,
372
+ category: 7,
373
+ },
374
+ {
375
+ id: '41',
376
+ name: 'Eponine',
377
+ symbolSize: 20.95238266666667,
378
+ x: 238.36697,
379
+ y: -210.00926,
380
+ value: 31.428574,
381
+ category: 7,
382
+ },
383
+ {
384
+ id: '42',
385
+ name: 'Anzelma',
386
+ symbolSize: 6.323809333333333,
387
+ x: 189.69513,
388
+ y: -346.50662,
389
+ value: 9.485714,
390
+ category: 7,
391
+ },
392
+ {
393
+ id: '43',
394
+ name: 'Woman2',
395
+ symbolSize: 6.323809333333333,
396
+ x: -187.00418,
397
+ y: -145.02663,
398
+ value: 9.485714,
399
+ category: 6,
400
+ },
401
+ {
402
+ id: '44',
403
+ name: 'MotherInnocent',
404
+ symbolSize: 4.495239333333333,
405
+ x: -252.99521,
406
+ y: 129.87549,
407
+ value: 6.742859,
408
+ category: 4,
409
+ },
410
+ {
411
+ id: '45',
412
+ name: 'Gribier',
413
+ symbolSize: 2.6666666666666665,
414
+ x: -296.07935,
415
+ y: 163.11964,
416
+ value: 4,
417
+ category: 4,
418
+ },
419
+ {
420
+ id: '46',
421
+ name: 'Jondrette',
422
+ symbolSize: 2.6666666666666665,
423
+ x: 550.3201,
424
+ y: 522.4031,
425
+ value: 4,
426
+ category: 5,
427
+ },
428
+ {
429
+ id: '47',
430
+ name: 'MmeBurgon',
431
+ symbolSize: 4.495239333333333,
432
+ x: 488.13535,
433
+ y: 356.8573,
434
+ value: 6.742859,
435
+ category: 5,
436
+ },
437
+ {
438
+ id: '48',
439
+ name: 'Gavroche',
440
+ symbolSize: 41.06667066666667,
441
+ x: 387.89572,
442
+ y: 110.462326,
443
+ value: 61.600006,
444
+ category: 8,
445
+ },
446
+ {
447
+ id: '49',
448
+ name: 'Gillenormand',
449
+ symbolSize: 13.638097333333334,
450
+ x: 126.4831,
451
+ y: 68.10622,
452
+ value: 20.457146,
453
+ category: 6,
454
+ },
455
+ {
456
+ id: '50',
457
+ name: 'Magnon',
458
+ symbolSize: 4.495239333333333,
459
+ x: 127.07365,
460
+ y: -113.05923,
461
+ value: 6.742859,
462
+ category: 6,
463
+ },
464
+ {
465
+ id: '51',
466
+ name: 'MlleGillenormand',
467
+ symbolSize: 13.638097333333334,
468
+ x: 162.63559,
469
+ y: 117.6565,
470
+ value: 20.457146,
471
+ category: 6,
472
+ },
473
+ {
474
+ id: '52',
475
+ name: 'MmePontmercy',
476
+ symbolSize: 4.495239333333333,
477
+ x: 353.66415,
478
+ y: -205.89165,
479
+ value: 6.742859,
480
+ category: 6,
481
+ },
482
+ {
483
+ id: '53',
484
+ name: 'MlleVaubois',
485
+ symbolSize: 2.6666666666666665,
486
+ x: 165.43939,
487
+ y: 339.7736,
488
+ value: 4,
489
+ category: 6,
490
+ },
491
+ {
492
+ id: '54',
493
+ name: 'LtGillenormand',
494
+ symbolSize: 8.152382000000001,
495
+ x: 137.69348,
496
+ y: 196.1069,
497
+ value: 12.228573,
498
+ category: 6,
499
+ },
500
+ {
501
+ id: '55',
502
+ name: 'Marius',
503
+ symbolSize: 35.58095333333333,
504
+ x: 206.44687,
505
+ y: -13.805411,
506
+ value: 53.37143,
507
+ category: 6,
508
+ },
509
+ {
510
+ id: '56',
511
+ name: 'BaronessT',
512
+ symbolSize: 4.495239333333333,
513
+ x: 194.82993,
514
+ y: 224.78036,
515
+ value: 6.742859,
516
+ category: 6,
517
+ },
518
+ {
519
+ id: '57',
520
+ name: 'Mabeuf',
521
+ symbolSize: 20.95238266666667,
522
+ x: 597.6618,
523
+ y: 135.18481,
524
+ value: 31.428574,
525
+ category: 8,
526
+ },
527
+ {
528
+ id: '58',
529
+ name: 'Enjolras',
530
+ symbolSize: 28.266666666666666,
531
+ x: 355.78366,
532
+ y: -74.882454,
533
+ value: 42.4,
534
+ category: 8,
535
+ },
536
+ {
537
+ id: '59',
538
+ name: 'Combeferre',
539
+ symbolSize: 20.95238266666667,
540
+ x: 515.2961,
541
+ y: -46.167564,
542
+ value: 31.428574,
543
+ category: 8,
544
+ },
545
+ {
546
+ id: '60',
547
+ name: 'Prouvaire',
548
+ symbolSize: 17.295237333333333,
549
+ x: 614.29285,
550
+ y: -69.3104,
551
+ value: 25.942856,
552
+ category: 8,
553
+ },
554
+ {
555
+ id: '61',
556
+ name: 'Feuilly',
557
+ symbolSize: 20.95238266666667,
558
+ x: 550.1917,
559
+ y: -128.17537,
560
+ value: 31.428574,
561
+ category: 8,
562
+ },
563
+ {
564
+ id: '62',
565
+ name: 'Courfeyrac',
566
+ symbolSize: 24.609526666666667,
567
+ x: 436.17184,
568
+ y: -12.7286825,
569
+ value: 36.91429,
570
+ category: 8,
571
+ },
572
+ {
573
+ id: '63',
574
+ name: 'Bahorel',
575
+ symbolSize: 22.780953333333333,
576
+ x: 602.55225,
577
+ y: 16.421427,
578
+ value: 34.17143,
579
+ category: 8,
580
+ },
581
+ {
582
+ id: '64',
583
+ name: 'Bossuet',
584
+ symbolSize: 24.609526666666667,
585
+ x: 455.81955,
586
+ y: -115.45826,
587
+ value: 36.91429,
588
+ category: 8,
589
+ },
590
+ {
591
+ id: '65',
592
+ name: 'Joly',
593
+ symbolSize: 22.780953333333333,
594
+ x: 516.40784,
595
+ y: 47.242233,
596
+ value: 34.17143,
597
+ category: 8,
598
+ },
599
+ {
600
+ id: '66',
601
+ name: 'Grantaire',
602
+ symbolSize: 19.12381,
603
+ x: 646.4313,
604
+ y: -151.06331,
605
+ value: 28.685715,
606
+ category: 8,
607
+ },
608
+ {
609
+ id: '67',
610
+ name: 'MotherPlutarch',
611
+ symbolSize: 2.6666666666666665,
612
+ x: 668.9568,
613
+ y: 204.65488,
614
+ value: 4,
615
+ category: 8,
616
+ },
617
+ {
618
+ id: '68',
619
+ name: 'Gueulemer',
620
+ symbolSize: 19.12381,
621
+ x: 78.4799,
622
+ y: -347.15146,
623
+ value: 28.685715,
624
+ category: 7,
625
+ },
626
+ {
627
+ id: '69',
628
+ name: 'Babet',
629
+ symbolSize: 19.12381,
630
+ x: 150.35959,
631
+ y: -298.50797,
632
+ value: 28.685715,
633
+ category: 7,
634
+ },
635
+ {
636
+ id: '70',
637
+ name: 'Claquesous',
638
+ symbolSize: 19.12381,
639
+ x: 137.3717,
640
+ y: -410.2809,
641
+ value: 28.685715,
642
+ category: 7,
643
+ },
644
+ {
645
+ id: '71',
646
+ name: 'Montparnasse',
647
+ symbolSize: 17.295237333333333,
648
+ x: 234.87747,
649
+ y: -400.85983,
650
+ value: 25.942856,
651
+ category: 7,
652
+ },
653
+ {
654
+ id: '72',
655
+ name: 'Toussaint',
656
+ symbolSize: 6.323809333333333,
657
+ x: 40.942253,
658
+ y: 113.78272,
659
+ value: 9.485714,
660
+ category: 1,
661
+ },
662
+ {
663
+ id: '73',
664
+ name: 'Child1',
665
+ symbolSize: 4.495239333333333,
666
+ x: 437.939,
667
+ y: 291.58234,
668
+ value: 6.742859,
669
+ category: 8,
670
+ },
671
+ {
672
+ id: '74',
673
+ name: 'Child2',
674
+ symbolSize: 4.495239333333333,
675
+ x: 466.04922,
676
+ y: 283.3606,
677
+ value: 6.742859,
678
+ category: 8,
679
+ },
680
+ {
681
+ id: '75',
682
+ name: 'Brujon',
683
+ symbolSize: 13.638097333333334,
684
+ x: 238.79364,
685
+ y: -314.06345,
686
+ value: 20.457146,
687
+ category: 7,
688
+ },
689
+ {
690
+ id: '76',
691
+ name: 'MmeHucheloup',
692
+ symbolSize: 13.638097333333334,
693
+ x: 712.18353,
694
+ y: 4.8131495,
695
+ value: 20.457146,
696
+ category: 8,
697
+ },
698
+ ],
699
+ links: [
700
+ {
701
+ source: '1',
702
+ target: '0',
703
+ },
704
+ {
705
+ source: '2',
706
+ target: '0',
707
+ },
708
+ {
709
+ source: '3',
710
+ target: '0',
711
+ },
712
+ {
713
+ source: '3',
714
+ target: '2',
715
+ },
716
+ {
717
+ source: '4',
718
+ target: '0',
719
+ },
720
+ {
721
+ source: '5',
722
+ target: '0',
723
+ },
724
+ {
725
+ source: '6',
726
+ target: '0',
727
+ },
728
+ {
729
+ source: '7',
730
+ target: '0',
731
+ },
732
+ {
733
+ source: '8',
734
+ target: '0',
735
+ },
736
+ {
737
+ source: '9',
738
+ target: '0',
739
+ },
740
+ {
741
+ source: '11',
742
+ target: '0',
743
+ },
744
+ {
745
+ source: '11',
746
+ target: '2',
747
+ },
748
+ {
749
+ source: '11',
750
+ target: '3',
751
+ },
752
+ {
753
+ source: '11',
754
+ target: '10',
755
+ },
756
+ {
757
+ source: '12',
758
+ target: '11',
759
+ },
760
+ {
761
+ source: '13',
762
+ target: '11',
763
+ },
764
+ {
765
+ source: '14',
766
+ target: '11',
767
+ },
768
+ {
769
+ source: '15',
770
+ target: '11',
771
+ },
772
+ {
773
+ source: '17',
774
+ target: '16',
775
+ },
776
+ {
777
+ source: '18',
778
+ target: '16',
779
+ },
780
+ {
781
+ source: '18',
782
+ target: '17',
783
+ },
784
+ {
785
+ source: '19',
786
+ target: '16',
787
+ },
788
+ {
789
+ source: '19',
790
+ target: '17',
791
+ },
792
+ {
793
+ source: '19',
794
+ target: '18',
795
+ },
796
+ {
797
+ source: '20',
798
+ target: '16',
799
+ },
800
+ {
801
+ source: '20',
802
+ target: '17',
803
+ },
804
+ {
805
+ source: '20',
806
+ target: '18',
807
+ },
808
+ {
809
+ source: '20',
810
+ target: '19',
811
+ },
812
+ {
813
+ source: '21',
814
+ target: '16',
815
+ },
816
+ {
817
+ source: '21',
818
+ target: '17',
819
+ },
820
+ {
821
+ source: '21',
822
+ target: '18',
823
+ },
824
+ {
825
+ source: '21',
826
+ target: '19',
827
+ },
828
+ {
829
+ source: '21',
830
+ target: '20',
831
+ },
832
+ {
833
+ source: '22',
834
+ target: '16',
835
+ },
836
+ {
837
+ source: '22',
838
+ target: '17',
839
+ },
840
+ {
841
+ source: '22',
842
+ target: '18',
843
+ },
844
+ {
845
+ source: '22',
846
+ target: '19',
847
+ },
848
+ {
849
+ source: '22',
850
+ target: '20',
851
+ },
852
+ {
853
+ source: '22',
854
+ target: '21',
855
+ },
856
+ {
857
+ source: '23',
858
+ target: '11',
859
+ },
860
+ {
861
+ source: '23',
862
+ target: '12',
863
+ },
864
+ {
865
+ source: '23',
866
+ target: '16',
867
+ },
868
+ {
869
+ source: '23',
870
+ target: '17',
871
+ },
872
+ {
873
+ source: '23',
874
+ target: '18',
875
+ },
876
+ {
877
+ source: '23',
878
+ target: '19',
879
+ },
880
+ {
881
+ source: '23',
882
+ target: '20',
883
+ },
884
+ {
885
+ source: '23',
886
+ target: '21',
887
+ },
888
+ {
889
+ source: '23',
890
+ target: '22',
891
+ },
892
+ {
893
+ source: '24',
894
+ target: '11',
895
+ },
896
+ {
897
+ source: '24',
898
+ target: '23',
899
+ },
900
+ {
901
+ source: '25',
902
+ target: '11',
903
+ },
904
+ {
905
+ source: '25',
906
+ target: '23',
907
+ },
908
+ {
909
+ source: '25',
910
+ target: '24',
911
+ },
912
+ {
913
+ source: '26',
914
+ target: '11',
915
+ },
916
+ {
917
+ source: '26',
918
+ target: '16',
919
+ },
920
+ {
921
+ source: '26',
922
+ target: '24',
923
+ },
924
+ {
925
+ source: '26',
926
+ target: '25',
927
+ },
928
+ {
929
+ source: '27',
930
+ target: '11',
931
+ },
932
+ {
933
+ source: '27',
934
+ target: '23',
935
+ },
936
+ {
937
+ source: '27',
938
+ target: '24',
939
+ },
940
+ {
941
+ source: '27',
942
+ target: '25',
943
+ },
944
+ {
945
+ source: '27',
946
+ target: '26',
947
+ },
948
+ {
949
+ source: '28',
950
+ target: '11',
951
+ },
952
+ {
953
+ source: '28',
954
+ target: '27',
955
+ },
956
+ {
957
+ source: '29',
958
+ target: '11',
959
+ },
960
+ {
961
+ source: '29',
962
+ target: '23',
963
+ },
964
+ {
965
+ source: '29',
966
+ target: '27',
967
+ },
968
+ {
969
+ source: '30',
970
+ target: '23',
971
+ },
972
+ {
973
+ source: '31',
974
+ target: '11',
975
+ },
976
+ {
977
+ source: '31',
978
+ target: '23',
979
+ },
980
+ {
981
+ source: '31',
982
+ target: '27',
983
+ },
984
+ {
985
+ source: '31',
986
+ target: '30',
987
+ },
988
+ {
989
+ source: '32',
990
+ target: '11',
991
+ },
992
+ {
993
+ source: '33',
994
+ target: '11',
995
+ },
996
+ {
997
+ source: '33',
998
+ target: '27',
999
+ },
1000
+ {
1001
+ source: '34',
1002
+ target: '11',
1003
+ },
1004
+ {
1005
+ source: '34',
1006
+ target: '29',
1007
+ },
1008
+ {
1009
+ source: '35',
1010
+ target: '11',
1011
+ },
1012
+ {
1013
+ source: '35',
1014
+ target: '29',
1015
+ },
1016
+ {
1017
+ source: '35',
1018
+ target: '34',
1019
+ },
1020
+ {
1021
+ source: '36',
1022
+ target: '11',
1023
+ },
1024
+ {
1025
+ source: '36',
1026
+ target: '29',
1027
+ },
1028
+ {
1029
+ source: '36',
1030
+ target: '34',
1031
+ },
1032
+ {
1033
+ source: '36',
1034
+ target: '35',
1035
+ },
1036
+ {
1037
+ source: '37',
1038
+ target: '11',
1039
+ },
1040
+ {
1041
+ source: '37',
1042
+ target: '29',
1043
+ },
1044
+ {
1045
+ source: '37',
1046
+ target: '34',
1047
+ },
1048
+ {
1049
+ source: '37',
1050
+ target: '35',
1051
+ },
1052
+ {
1053
+ source: '37',
1054
+ target: '36',
1055
+ },
1056
+ {
1057
+ source: '38',
1058
+ target: '11',
1059
+ },
1060
+ {
1061
+ source: '38',
1062
+ target: '29',
1063
+ },
1064
+ {
1065
+ source: '38',
1066
+ target: '34',
1067
+ },
1068
+ {
1069
+ source: '38',
1070
+ target: '35',
1071
+ },
1072
+ {
1073
+ source: '38',
1074
+ target: '36',
1075
+ },
1076
+ {
1077
+ source: '38',
1078
+ target: '37',
1079
+ },
1080
+ {
1081
+ source: '39',
1082
+ target: '25',
1083
+ },
1084
+ {
1085
+ source: '40',
1086
+ target: '25',
1087
+ },
1088
+ {
1089
+ source: '41',
1090
+ target: '24',
1091
+ },
1092
+ {
1093
+ source: '41',
1094
+ target: '25',
1095
+ },
1096
+ {
1097
+ source: '42',
1098
+ target: '24',
1099
+ },
1100
+ {
1101
+ source: '42',
1102
+ target: '25',
1103
+ },
1104
+ {
1105
+ source: '42',
1106
+ target: '41',
1107
+ },
1108
+ {
1109
+ source: '43',
1110
+ target: '11',
1111
+ },
1112
+ {
1113
+ source: '43',
1114
+ target: '26',
1115
+ },
1116
+ {
1117
+ source: '43',
1118
+ target: '27',
1119
+ },
1120
+ {
1121
+ source: '44',
1122
+ target: '11',
1123
+ },
1124
+ {
1125
+ source: '44',
1126
+ target: '28',
1127
+ },
1128
+ {
1129
+ source: '45',
1130
+ target: '28',
1131
+ },
1132
+ {
1133
+ source: '47',
1134
+ target: '46',
1135
+ },
1136
+ {
1137
+ source: '48',
1138
+ target: '11',
1139
+ },
1140
+ {
1141
+ source: '48',
1142
+ target: '25',
1143
+ },
1144
+ {
1145
+ source: '48',
1146
+ target: '27',
1147
+ },
1148
+ {
1149
+ source: '48',
1150
+ target: '47',
1151
+ },
1152
+ {
1153
+ source: '49',
1154
+ target: '11',
1155
+ },
1156
+ {
1157
+ source: '49',
1158
+ target: '26',
1159
+ },
1160
+ {
1161
+ source: '50',
1162
+ target: '24',
1163
+ },
1164
+ {
1165
+ source: '50',
1166
+ target: '49',
1167
+ },
1168
+ {
1169
+ source: '51',
1170
+ target: '11',
1171
+ },
1172
+ {
1173
+ source: '51',
1174
+ target: '26',
1175
+ },
1176
+ {
1177
+ source: '51',
1178
+ target: '49',
1179
+ },
1180
+ {
1181
+ source: '52',
1182
+ target: '39',
1183
+ },
1184
+ {
1185
+ source: '52',
1186
+ target: '51',
1187
+ },
1188
+ {
1189
+ source: '53',
1190
+ target: '51',
1191
+ },
1192
+ {
1193
+ source: '54',
1194
+ target: '26',
1195
+ },
1196
+ {
1197
+ source: '54',
1198
+ target: '49',
1199
+ },
1200
+ {
1201
+ source: '54',
1202
+ target: '51',
1203
+ },
1204
+ {
1205
+ source: '55',
1206
+ target: '11',
1207
+ },
1208
+ {
1209
+ source: '55',
1210
+ target: '16',
1211
+ },
1212
+ {
1213
+ source: '55',
1214
+ target: '25',
1215
+ },
1216
+ {
1217
+ source: '55',
1218
+ target: '26',
1219
+ },
1220
+ {
1221
+ source: '55',
1222
+ target: '39',
1223
+ },
1224
+ {
1225
+ source: '55',
1226
+ target: '41',
1227
+ },
1228
+ {
1229
+ source: '55',
1230
+ target: '48',
1231
+ },
1232
+ {
1233
+ source: '55',
1234
+ target: '49',
1235
+ },
1236
+ {
1237
+ source: '55',
1238
+ target: '51',
1239
+ },
1240
+ {
1241
+ source: '55',
1242
+ target: '54',
1243
+ },
1244
+ {
1245
+ source: '56',
1246
+ target: '49',
1247
+ },
1248
+ {
1249
+ source: '56',
1250
+ target: '55',
1251
+ },
1252
+ {
1253
+ source: '57',
1254
+ target: '41',
1255
+ },
1256
+ {
1257
+ source: '57',
1258
+ target: '48',
1259
+ },
1260
+ {
1261
+ source: '57',
1262
+ target: '55',
1263
+ },
1264
+ {
1265
+ source: '58',
1266
+ target: '11',
1267
+ },
1268
+ {
1269
+ source: '58',
1270
+ target: '27',
1271
+ },
1272
+ {
1273
+ source: '58',
1274
+ target: '48',
1275
+ },
1276
+ {
1277
+ source: '58',
1278
+ target: '55',
1279
+ },
1280
+ {
1281
+ source: '58',
1282
+ target: '57',
1283
+ },
1284
+ {
1285
+ source: '59',
1286
+ target: '48',
1287
+ },
1288
+ {
1289
+ source: '59',
1290
+ target: '55',
1291
+ },
1292
+ {
1293
+ source: '59',
1294
+ target: '57',
1295
+ },
1296
+ {
1297
+ source: '59',
1298
+ target: '58',
1299
+ },
1300
+ {
1301
+ source: '60',
1302
+ target: '48',
1303
+ },
1304
+ {
1305
+ source: '60',
1306
+ target: '58',
1307
+ },
1308
+ {
1309
+ source: '60',
1310
+ target: '59',
1311
+ },
1312
+ {
1313
+ source: '61',
1314
+ target: '48',
1315
+ },
1316
+ {
1317
+ source: '61',
1318
+ target: '55',
1319
+ },
1320
+ {
1321
+ source: '61',
1322
+ target: '57',
1323
+ },
1324
+ {
1325
+ source: '61',
1326
+ target: '58',
1327
+ },
1328
+ {
1329
+ source: '61',
1330
+ target: '59',
1331
+ },
1332
+ {
1333
+ source: '61',
1334
+ target: '60',
1335
+ },
1336
+ {
1337
+ source: '62',
1338
+ target: '41',
1339
+ },
1340
+ {
1341
+ source: '62',
1342
+ target: '48',
1343
+ },
1344
+ {
1345
+ source: '62',
1346
+ target: '55',
1347
+ },
1348
+ {
1349
+ source: '62',
1350
+ target: '57',
1351
+ },
1352
+ {
1353
+ source: '62',
1354
+ target: '58',
1355
+ },
1356
+ {
1357
+ source: '62',
1358
+ target: '59',
1359
+ },
1360
+ {
1361
+ source: '62',
1362
+ target: '60',
1363
+ },
1364
+ {
1365
+ source: '62',
1366
+ target: '61',
1367
+ },
1368
+ {
1369
+ source: '63',
1370
+ target: '48',
1371
+ },
1372
+ {
1373
+ source: '63',
1374
+ target: '55',
1375
+ },
1376
+ {
1377
+ source: '63',
1378
+ target: '57',
1379
+ },
1380
+ {
1381
+ source: '63',
1382
+ target: '58',
1383
+ },
1384
+ {
1385
+ source: '63',
1386
+ target: '59',
1387
+ },
1388
+ {
1389
+ source: '63',
1390
+ target: '60',
1391
+ },
1392
+ {
1393
+ source: '63',
1394
+ target: '61',
1395
+ },
1396
+ {
1397
+ source: '63',
1398
+ target: '62',
1399
+ },
1400
+ {
1401
+ source: '64',
1402
+ target: '11',
1403
+ },
1404
+ {
1405
+ source: '64',
1406
+ target: '48',
1407
+ },
1408
+ {
1409
+ source: '64',
1410
+ target: '55',
1411
+ },
1412
+ {
1413
+ source: '64',
1414
+ target: '57',
1415
+ },
1416
+ {
1417
+ source: '64',
1418
+ target: '58',
1419
+ },
1420
+ {
1421
+ source: '64',
1422
+ target: '59',
1423
+ },
1424
+ {
1425
+ source: '64',
1426
+ target: '60',
1427
+ },
1428
+ {
1429
+ source: '64',
1430
+ target: '61',
1431
+ },
1432
+ {
1433
+ source: '64',
1434
+ target: '62',
1435
+ },
1436
+ {
1437
+ source: '64',
1438
+ target: '63',
1439
+ },
1440
+ {
1441
+ source: '65',
1442
+ target: '48',
1443
+ },
1444
+ {
1445
+ source: '65',
1446
+ target: '55',
1447
+ },
1448
+ {
1449
+ source: '65',
1450
+ target: '57',
1451
+ },
1452
+ {
1453
+ source: '65',
1454
+ target: '58',
1455
+ },
1456
+ {
1457
+ source: '65',
1458
+ target: '59',
1459
+ },
1460
+ {
1461
+ source: '65',
1462
+ target: '60',
1463
+ },
1464
+ {
1465
+ source: '65',
1466
+ target: '61',
1467
+ },
1468
+ {
1469
+ source: '65',
1470
+ target: '62',
1471
+ },
1472
+ {
1473
+ source: '65',
1474
+ target: '63',
1475
+ },
1476
+ {
1477
+ source: '65',
1478
+ target: '64',
1479
+ },
1480
+ {
1481
+ source: '66',
1482
+ target: '48',
1483
+ },
1484
+ {
1485
+ source: '66',
1486
+ target: '58',
1487
+ },
1488
+ {
1489
+ source: '66',
1490
+ target: '59',
1491
+ },
1492
+ {
1493
+ source: '66',
1494
+ target: '60',
1495
+ },
1496
+ {
1497
+ source: '66',
1498
+ target: '61',
1499
+ },
1500
+ {
1501
+ source: '66',
1502
+ target: '62',
1503
+ },
1504
+ {
1505
+ source: '66',
1506
+ target: '63',
1507
+ },
1508
+ {
1509
+ source: '66',
1510
+ target: '64',
1511
+ },
1512
+ {
1513
+ source: '66',
1514
+ target: '65',
1515
+ },
1516
+ {
1517
+ source: '67',
1518
+ target: '57',
1519
+ },
1520
+ {
1521
+ source: '68',
1522
+ target: '11',
1523
+ },
1524
+ {
1525
+ source: '68',
1526
+ target: '24',
1527
+ },
1528
+ {
1529
+ source: '68',
1530
+ target: '25',
1531
+ },
1532
+ {
1533
+ source: '68',
1534
+ target: '27',
1535
+ },
1536
+ {
1537
+ source: '68',
1538
+ target: '41',
1539
+ },
1540
+ {
1541
+ source: '68',
1542
+ target: '48',
1543
+ },
1544
+ {
1545
+ source: '69',
1546
+ target: '11',
1547
+ },
1548
+ {
1549
+ source: '69',
1550
+ target: '24',
1551
+ },
1552
+ {
1553
+ source: '69',
1554
+ target: '25',
1555
+ },
1556
+ {
1557
+ source: '69',
1558
+ target: '27',
1559
+ },
1560
+ {
1561
+ source: '69',
1562
+ target: '41',
1563
+ },
1564
+ {
1565
+ source: '69',
1566
+ target: '48',
1567
+ },
1568
+ {
1569
+ source: '69',
1570
+ target: '68',
1571
+ },
1572
+ {
1573
+ source: '70',
1574
+ target: '11',
1575
+ },
1576
+ {
1577
+ source: '70',
1578
+ target: '24',
1579
+ },
1580
+ {
1581
+ source: '70',
1582
+ target: '25',
1583
+ },
1584
+ {
1585
+ source: '70',
1586
+ target: '27',
1587
+ },
1588
+ {
1589
+ source: '70',
1590
+ target: '41',
1591
+ },
1592
+ {
1593
+ source: '70',
1594
+ target: '58',
1595
+ },
1596
+ {
1597
+ source: '70',
1598
+ target: '68',
1599
+ },
1600
+ {
1601
+ source: '70',
1602
+ target: '69',
1603
+ },
1604
+ {
1605
+ source: '71',
1606
+ target: '11',
1607
+ },
1608
+ {
1609
+ source: '71',
1610
+ target: '25',
1611
+ },
1612
+ {
1613
+ source: '71',
1614
+ target: '27',
1615
+ },
1616
+ {
1617
+ source: '71',
1618
+ target: '41',
1619
+ },
1620
+ {
1621
+ source: '71',
1622
+ target: '48',
1623
+ },
1624
+ {
1625
+ source: '71',
1626
+ target: '68',
1627
+ },
1628
+ {
1629
+ source: '71',
1630
+ target: '69',
1631
+ },
1632
+ {
1633
+ source: '71',
1634
+ target: '70',
1635
+ },
1636
+ {
1637
+ source: '72',
1638
+ target: '11',
1639
+ },
1640
+ {
1641
+ source: '72',
1642
+ target: '26',
1643
+ },
1644
+ {
1645
+ source: '72',
1646
+ target: '27',
1647
+ },
1648
+ {
1649
+ source: '73',
1650
+ target: '48',
1651
+ },
1652
+ {
1653
+ source: '74',
1654
+ target: '48',
1655
+ },
1656
+ {
1657
+ source: '74',
1658
+ target: '73',
1659
+ },
1660
+ {
1661
+ source: '75',
1662
+ target: '25',
1663
+ },
1664
+ {
1665
+ source: '75',
1666
+ target: '41',
1667
+ },
1668
+ {
1669
+ source: '75',
1670
+ target: '48',
1671
+ },
1672
+ {
1673
+ source: '75',
1674
+ target: '68',
1675
+ },
1676
+ {
1677
+ source: '75',
1678
+ target: '69',
1679
+ },
1680
+ {
1681
+ source: '75',
1682
+ target: '70',
1683
+ },
1684
+ {
1685
+ source: '75',
1686
+ target: '71',
1687
+ },
1688
+ {
1689
+ source: '76',
1690
+ target: '48',
1691
+ },
1692
+ {
1693
+ source: '76',
1694
+ target: '58',
1695
+ },
1696
+ {
1697
+ source: '76',
1698
+ target: '62',
1699
+ },
1700
+ {
1701
+ source: '76',
1702
+ target: '63',
1703
+ },
1704
+ {
1705
+ source: '76',
1706
+ target: '64',
1707
+ },
1708
+ {
1709
+ source: '76',
1710
+ target: '65',
1711
+ },
1712
+ {
1713
+ source: '76',
1714
+ target: '66',
1715
+ },
1716
+ ],
1717
+ categories: [
1718
+ {
1719
+ name: 'A',
1720
+ },
1721
+ {
1722
+ name: 'B',
1723
+ },
1724
+ {
1725
+ name: 'C',
1726
+ },
1727
+ {
1728
+ name: 'D',
1729
+ },
1730
+ {
1731
+ name: 'E',
1732
+ },
1733
+ {
1734
+ name: 'F',
1735
+ },
1736
+ {
1737
+ name: 'G',
1738
+ },
1739
+ {
1740
+ name: 'H',
1741
+ },
1742
+ {
1743
+ name: 'I',
1744
+ },
1745
+ ],
1746
+ }
1747
+
1748
+ export function getOption(): EChartsOption {
1749
+ return {
1750
+ title: {
1751
+ text: 'Les Miserables',
1752
+ subtext: 'Default layout',
1753
+ top: 'bottom',
1754
+ left: 'right',
1755
+ },
1756
+ tooltip: {},
1757
+ legend: [
1758
+ {
1759
+ // selectedMode: 'single',
1760
+ data: graph.categories.map((a) => {
1761
+ return a.name
1762
+ }),
1763
+ },
1764
+ ],
1765
+ animationDuration: 1500,
1766
+ animationEasingUpdate: 'quinticInOut',
1767
+ series: [
1768
+ {
1769
+ name: 'Les Miserables',
1770
+ type: 'graph',
1771
+ legendHoverLink: false,
1772
+ layout: 'none',
1773
+ data: graph.nodes,
1774
+ links: graph.links,
1775
+ categories: graph.categories,
1776
+ roam: true,
1777
+ label: {
1778
+ position: 'right',
1779
+ formatter: '{b}',
1780
+ },
1781
+ lineStyle: {
1782
+ color: 'source',
1783
+ curveness: 0.3,
1784
+ },
1785
+ emphasis: {
1786
+ focus: 'adjacency',
1787
+ lineStyle: {
1788
+ width: 10,
1789
+ },
1790
+ },
1791
+ },
1792
+ ],
1793
+ }
1794
+ }