@orbcharts/plugins-basic 3.0.0-beta.13 → 3.0.0-beta.15

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 (100) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-plugins-basic/src/utils/d3Utils.d.ts +1 -0
  3. package/dist/orbcharts-plugins-basic.es.js +5558 -5443
  4. package/dist/orbcharts-plugins-basic.umd.js +159 -78
  5. package/lib/core-types.ts +7 -7
  6. package/lib/core.ts +6 -6
  7. package/lib/plugins-basic-types.ts +6 -6
  8. package/package.json +44 -44
  9. package/src/base/BaseBars.ts +765 -765
  10. package/src/base/BaseBarsTriangle.ts +676 -676
  11. package/src/base/BaseDots.ts +464 -464
  12. package/src/base/BaseGroupAxis.ts +679 -679
  13. package/src/base/BaseLegend.ts +684 -684
  14. package/src/base/BaseLineAreas.ts +629 -629
  15. package/src/base/BaseLines.ts +706 -706
  16. package/src/base/BaseStackedBar.ts +782 -782
  17. package/src/base/BaseTooltip.ts +385 -385
  18. package/src/base/BaseValueAxis.ts +583 -583
  19. package/src/base/types.ts +2 -2
  20. package/src/const.ts +30 -30
  21. package/src/grid/defaults.ts +250 -246
  22. package/src/grid/gridObservables.ts +554 -554
  23. package/src/grid/index.ts +16 -16
  24. package/src/grid/plugins/Bars.ts +69 -69
  25. package/src/grid/plugins/BarsPN.ts +66 -66
  26. package/src/grid/plugins/BarsTriangle.ts +73 -73
  27. package/src/grid/plugins/Dots.ts +68 -68
  28. package/src/grid/plugins/GridLegend.ts +107 -107
  29. package/src/grid/plugins/GridTooltip.ts +66 -66
  30. package/src/grid/plugins/GridZoom.ts +218 -218
  31. package/src/grid/plugins/GroupAux.ts +1103 -1103
  32. package/src/grid/plugins/GroupAxis.ts +97 -97
  33. package/src/grid/plugins/LineAreas.ts +65 -65
  34. package/src/grid/plugins/Lines.ts +59 -59
  35. package/src/grid/plugins/StackedBar.ts +64 -64
  36. package/src/grid/plugins/StackedValueAxis.ts +96 -96
  37. package/src/grid/plugins/ValueAxis.ts +94 -94
  38. package/src/index.ts +6 -6
  39. package/src/multiGrid/defaults.ts +228 -224
  40. package/src/multiGrid/index.ts +14 -14
  41. package/src/multiGrid/multiGridObservables.ts +49 -49
  42. package/src/multiGrid/plugins/MultiBars.ts +108 -108
  43. package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
  44. package/src/multiGrid/plugins/MultiDots.ts +102 -102
  45. package/src/multiGrid/plugins/MultiGridLegend.ts +159 -159
  46. package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
  47. package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
  48. package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
  49. package/src/multiGrid/plugins/MultiLines.ts +101 -101
  50. package/src/multiGrid/plugins/MultiStackedBar.ts +106 -106
  51. package/src/multiGrid/plugins/MultiStackedValueAxis.ts +134 -134
  52. package/src/multiGrid/plugins/MultiValueAxis.ts +134 -134
  53. package/src/multiGrid/plugins/OverlappingStackedValueAxes.ts +299 -299
  54. package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -300
  55. package/src/multiValue/defaults.ts +166 -166
  56. package/src/multiValue/index.ts +8 -8
  57. package/src/multiValue/multiValueObservables.ts +297 -297
  58. package/src/multiValue/plugins/MultiValueLegend.ts +107 -107
  59. package/src/multiValue/plugins/MultiValueTooltip.ts +66 -66
  60. package/src/multiValue/plugins/Scatter.ts +426 -426
  61. package/src/multiValue/plugins/ScatterBubbles.ts +554 -554
  62. package/src/multiValue/plugins/XYAux.ts +681 -681
  63. package/src/multiValue/plugins/XYAxes.ts +684 -684
  64. package/src/multiValue/plugins/XYZoom.ts +299 -299
  65. package/src/noneData/defaults.ts +102 -102
  66. package/src/noneData/index.ts +3 -3
  67. package/src/noneData/plugins/Container.ts +27 -27
  68. package/src/noneData/plugins/Tooltip.ts +373 -373
  69. package/src/relationship/defaults.ts +218 -196
  70. package/src/relationship/index.ts +5 -5
  71. package/src/relationship/plugins/ForceDirected.ts +1168 -1168
  72. package/src/relationship/plugins/ForceDirectedBubbles.ts +1403 -1395
  73. package/src/relationship/plugins/RelationshipLegend.ts +100 -100
  74. package/src/relationship/plugins/RelationshipTooltip.ts +66 -66
  75. package/src/relationship/relationshipObservables.ts +49 -49
  76. package/src/series/defaults.ts +230 -207
  77. package/src/series/index.ts +9 -9
  78. package/src/series/plugins/Bubbles.ts +620 -606
  79. package/src/series/plugins/Pie.ts +623 -623
  80. package/src/series/plugins/PieEventTexts.ts +284 -284
  81. package/src/series/plugins/PieLabels.ts +640 -640
  82. package/src/series/plugins/Rose.ts +516 -516
  83. package/src/series/plugins/RoseLabels.ts +600 -600
  84. package/src/series/plugins/SeriesLegend.ts +107 -107
  85. package/src/series/plugins/SeriesTooltip.ts +66 -66
  86. package/src/series/seriesObservables.ts +145 -145
  87. package/src/series/seriesUtils.ts +51 -51
  88. package/src/tree/defaults.ts +100 -78
  89. package/src/tree/index.ts +4 -4
  90. package/src/tree/plugins/TreeLegend.ts +100 -100
  91. package/src/tree/plugins/TreeMap.ts +341 -333
  92. package/src/tree/plugins/TreeTooltip.ts +66 -66
  93. package/src/utils/commonUtils.ts +21 -21
  94. package/src/utils/d3Graphics.ts +174 -174
  95. package/src/utils/d3Utils.ts +92 -74
  96. package/src/utils/observables.ts +14 -14
  97. package/src/utils/orbchartsUtils.ts +129 -115
  98. package/tsconfig.base.json +13 -13
  99. package/tsconfig.json +2 -2
  100. package/vite.config.js +22 -22
@@ -1,607 +1,621 @@
1
- import * as d3 from 'd3'
2
- import {
3
- combineLatest,
4
- map,
5
- switchMap,
6
- first,
7
- takeUntil,
8
- Subject,
9
- Observable,
10
- distinctUntilChanged,
11
- shareReplay} from 'rxjs'
12
- import type { DefinePluginConfig } from '../../../lib/core-types'
13
- import type {
14
- ChartParams,
15
- DatumValue,
16
- DataSeries,
17
- EventName,
18
- ComputedDataSeries,
19
- ComputedDatumSeries,
20
- ContainerPosition } from '../../../lib/core-types'
21
- import {
22
- defineSeriesPlugin } from '../../../lib/core'
23
- import type { BubblesParams, ArcScaleType } from '../../../lib/plugins-basic-types'
24
- import { DEFAULT_BUBBLES_PARAMS } from '../defaults'
25
- import { renderCircleText } from '../../utils/d3Graphics'
26
- import { LAYER_INDEX_OF_GRAPHIC } from '../../const'
27
-
28
- interface BubblesDatum extends ComputedDatumSeries {
29
- x: number
30
- y: number
31
- r: number
32
- _originR: number // 紀錄變化前的r
33
- }
34
-
35
- type BubblesSimulationDatum = BubblesDatum & d3.SimulationNodeDatum
36
-
37
- const pluginName = 'Bubbles'
38
-
39
- const baseLineHeight = 12 // 未變形前的字體大小(代入計算用而已,數字多少都不會有影響)
40
-
41
- const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_BUBBLES_PARAMS> = {
42
- name: pluginName,
43
- defaultParams: DEFAULT_BUBBLES_PARAMS,
44
- layerIndex: LAYER_INDEX_OF_GRAPHIC,
45
- validator: (params, { validateColumns }) => {
46
- const result = validateColumns(params, {
47
- force: {
48
- toBeTypes: ['object']
49
- },
50
- bubbleLabel: {
51
- toBeTypes: ['object']
52
- },
53
- arcScaleType: {
54
- toBe: '"area" | "radius"',
55
- test: (value) => value === 'area' || value === 'radius'
56
- }
57
- })
58
- if (params.force) {
59
- const forceResult = validateColumns(params.force, {
60
- velocityDecay: {
61
- toBeTypes: ['number']
62
- },
63
- collisionSpacing: {
64
- toBeTypes: ['number']
65
- },
66
- strength: {
67
- toBeTypes: ['number']
68
- },
69
- })
70
- if (forceResult.status === 'error') {
71
- return forceResult
72
- }
73
- }
74
- if (params.bubbleLabel) {
75
- const bubbleLabelResult = validateColumns(params.bubbleLabel, {
76
- fillRate: {
77
- toBeTypes: ['number']
78
- },
79
- lineHeight: {
80
- toBeTypes: ['number']
81
- },
82
- maxLineLength: {
83
- toBeTypes: ['number']
84
- },
85
- })
86
- if (bubbleLabelResult.status === 'error') {
87
- return bubbleLabelResult
88
- }
89
- }
90
- return result
91
- }
92
- }
93
-
94
- let force: d3.Simulation<d3.SimulationNodeDatum, undefined> | undefined
95
-
96
- function makeForce (bubblesSelection: d3.Selection<SVGGElement, BubblesDatum, any, any>, fullParams: BubblesParams) {
97
- return d3.forceSimulation()
98
- .velocityDecay(fullParams.force!.velocityDecay!)
99
- // .alphaDecay(0.2)
100
- .force(
101
- "collision",
102
- d3.forceCollide()
103
- .radius((d: d3.SimulationNodeDatum & BubblesDatum) => {
104
- return d.r + fullParams.force!.collisionSpacing
105
- })
106
- // .strength(0.01)
107
- )
108
- .force("charge", d3.forceManyBody().strength((d: d3.SimulationNodeDatum & BubblesDatum) => {
109
- return - Math.pow(d.r, 2.0) * fullParams.force!.strength
110
- }))
111
- // .force("charge", d3.forceManyBody().strength(-2000))
112
- // .force("collision", d3.forceCollide(60).strength(1)) // @Q@ 60為泡泡的R,暫時是先寫死的
113
- // .force("x", d3.forceX().strength(forceStrength).x(this.graphicWidth / 2))
114
- // .force("y", d3.forceY().strength(forceStrength).y(this.graphicHeight / 2))
115
- .on("tick", () => {
116
- // if (!bubblesSelection) {
117
- // return
118
- // }
119
- bubblesSelection
120
- .attr("transform", (d) => {
121
- return `translate(${d.x},${d.y})`
122
- })
123
- // .attr("cx", (d) => d.x)
124
- // .attr("cy", (d) => d.y)
125
- })
126
-
127
- }
128
-
129
-
130
- // // 計算最大泡泡的半徑
131
- // function getMaxR ({ data, totalR, maxValue, avgValue }: {
132
- // data: DatumValue[]
133
- // totalR: number
134
- // maxValue: number
135
- // avgValue: number
136
- // }) {
137
- // // 平均r(假想是正方型來計算的,比如說大正方型裡有4個正方型,則 r = width/Math.sqrt(4)/2)
138
- // const avgR = totalR / Math.sqrt(data.length)
139
- // const avgSize = avgR * avgR * Math.PI
140
- // const sizeRate = avgSize / avgValue
141
- // const maxSize = maxValue * sizeRate
142
- // const maxR = Math.pow(maxSize / Math.PI, 0.5)
143
-
144
- // const modifier = 0.785 // @Q@ 因為以下公式是假設泡泡是正方型來計算,所以畫出來的圖會偏大一些,這個數值是用來修正用的
145
- // return maxR * modifier
146
- // }
147
-
148
- function createBubblesData ({ visibleComputedLayoutData, LastBubbleDataMap, graphicWidth, graphicHeight, SeriesContainerPositionMap, scaleType }: {
149
- visibleComputedLayoutData: ComputedDataSeries
150
- LastBubbleDataMap: Map<string, BubblesDatum>
151
- graphicWidth: number
152
- graphicHeight: number
153
- SeriesContainerPositionMap: Map<string, ContainerPosition>
154
- scaleType: ArcScaleType
155
- // highlightIds: string[]
156
- }): BubblesDatum[] {
157
- // 虛擬大圓(所有小圓聚合起來的大圓)的半徑
158
- const totalR = Math.min(...[graphicWidth, graphicHeight]) / 2
159
-
160
- const data = visibleComputedLayoutData.flat()
161
-
162
- const totalValue = data.reduce((acc, current) => acc + current.value, 0)
163
-
164
- // 半徑比例尺
165
- const radiusScale = d3.scalePow()
166
- .domain([0, totalValue])
167
- .range([0, totalR])
168
- .exponent(scaleType === 'area'
169
- ? 0.5 // 數值映射面積(0.5為取平方根)
170
- : 1 // 數值映射半徑
171
- )
172
-
173
- // 縮放比例 - 確保多個小圓的總面積等於大圓的面積
174
- const scaleFactor = scaleType === 'area'
175
- ? 1
176
- // 當數值映射半徑時,多個小圓的總面積會小於大圓的面積,所以要計算縮放比例
177
- : (() => {
178
- const totalArea = totalR * totalR * Math.PI
179
- return Math.sqrt(totalArea / d3.sum(data, d => Math.PI * Math.pow(radiusScale(d.value), 2)))
180
- })()
181
-
182
- // 調整係數 - 因為圓和圓之間的空隙造成聚合起來的大圓會略大,所以稍作微調
183
- const adjustmentFactor = 0.9
184
-
185
- return data.map((_d) => {
186
- const d: BubblesDatum = _d as BubblesDatum
187
-
188
- const existDatum = LastBubbleDataMap.get(d.id)
189
-
190
- if (existDatum) {
191
- // 使用現有的座標
192
- d.x = existDatum.x
193
- d.y = existDatum.y
194
- } else {
195
- const seriesContainerPosition = SeriesContainerPositionMap.get(d.seriesLabel)!
196
- d.x = Math.random() * seriesContainerPosition.width
197
- d.y = Math.random() * seriesContainerPosition.height
198
- }
199
- const r = radiusScale!(d.value ?? 0)! * scaleFactor * adjustmentFactor
200
- d.r = r
201
- d._originR = r
202
-
203
- return d
204
- })
205
- }
206
-
207
- function renderBubbles ({ selection, bubblesData, fullParams, sumSeries }: {
208
- selection: d3.Selection<SVGGElement, any, any, any>
209
- bubblesData: BubblesDatum[]
210
- fullParams: BubblesParams
211
- sumSeries: boolean
212
- }) {
213
- const bubblesSelection = selection.selectAll<SVGGElement, BubblesDatum>("g")
214
- .data(bubblesData, (d) => d.id)
215
- .join(
216
- enter => {
217
- const enterSelection = enter
218
- .append('g')
219
- .attr('cursor', 'pointer')
220
- .attr('font-size', baseLineHeight)
221
- .style('fill', '#ffffff')
222
- .attr("text-anchor", "middle")
223
-
224
- enterSelection
225
- .append("circle")
226
- .attr("class", "node")
227
- .attr("cx", 0)
228
- .attr("cy", 0)
229
- // .attr("r", 1e-6)
230
- .attr('fill', (d) => d.color)
231
- // .transition()
232
- // .duration(500)
233
-
234
- enterSelection
235
- .append('text')
236
- .style('opacity', 0.8)
237
- .attr('pointer-events', 'none')
238
-
239
- return enterSelection
240
- },
241
- update => {
242
- return update
243
- },
244
- exit => {
245
- return exit
246
- .remove()
247
- }
248
- )
249
- .attr("transform", (d) => {
250
- return `translate(${d.x},${d.y})`
251
- })
252
-
253
- // 泡泡文字要使用的的資料欄位
254
- const textDataColumn = sumSeries ? 'seriesLabel' : 'label'// 如果有合併series則使用seriesLabel
255
-
256
- bubblesSelection.select('circle')
257
- .transition()
258
- .duration(200)
259
- .attr("r", (d) => d.r)
260
- .attr('fill', (d) => d.color)
261
- bubblesSelection
262
- .each((d,i,g) => {
263
- const gSelection = d3.select(g[i])
264
- const text = d[textDataColumn] ?? ''
265
-
266
- gSelection.call(renderCircleText, {
267
- text,
268
- radius: d.r * fullParams.bubbleLabel.fillRate,
269
- lineHeight: baseLineHeight * fullParams.bubbleLabel.lineHeight,
270
- isBreakAll: text.length <= fullParams.bubbleLabel.maxLineLength
271
- ? false
272
- : fullParams.bubbleLabel.wordBreakAll
273
- })
274
-
275
- })
276
-
277
- return bubblesSelection
278
- }
279
-
280
- function setHighlightData ({ data, highlightRIncrease, highlightIds }: {
281
- data: BubblesDatum[]
282
- // fullParams: BubblesParams
283
- highlightRIncrease: number
284
- highlightIds: string[]
285
- }) {
286
- if (highlightRIncrease == 0) {
287
- return
288
- }
289
- if (!highlightIds.length) {
290
- data.forEach(d => d.r = d._originR)
291
- return
292
- }
293
- data.forEach(d => {
294
- if (highlightIds.includes(d.id)) {
295
- d.r = d._originR + highlightRIncrease
296
- } else {
297
- d.r = d._originR
298
- }
299
- })
300
- }
301
-
302
- function drag (): d3.DragBehavior<Element, unknown, unknown> {
303
- return d3.drag()
304
- .on("start", (event, d: any) => {
305
- if (!event.active) {
306
- force!.alpha(1).restart()
307
- }
308
- d.fx = d.x
309
- d.fy = d.y
310
- })
311
- .on("drag", (event, d: any) => {
312
- if (!event.active) {
313
- force!.alphaTarget(0)
314
- }
315
- d.fx = event.x
316
- d.fy = event.y
317
- })
318
- .on("end", (event, d: any) => {
319
- d.fx = null
320
- d.fy = null
321
- })
322
- }
323
-
324
-
325
- // private nodeTypePos (d: any) {
326
- // console.log(d)
327
- // console.log(this.TypeCenters.get(d.type)!)
328
- // const typeCenter = this.TypeCenters.get(d.type)!
329
- // return typeCenter ? typeCenter.x : 0
330
- // }
331
-
332
- function groupBubbles ({ fullParams, SeriesContainerPositionMap }: {
333
- fullParams: BubblesParams
334
- // graphicWidth: number
335
- // graphicHeight: number
336
- SeriesContainerPositionMap: Map<string, ContainerPosition>
337
- }) {
338
- // console.log('groupBubbles')
339
- force!
340
- // .force('x', d3.forceX().strength(fullParams.force.strength).x(graphicWidth / 2))
341
- // .force('y', d3.forceY().strength(fullParams.force.strength).y(graphicHeight / 2))
342
- .force('x', d3.forceX().strength(fullParams.force.strength).x((data: BubblesSimulationDatum) => {
343
- return SeriesContainerPositionMap.get(data.seriesLabel)!.centerX
344
- }))
345
- .force('y', d3.forceY().strength(fullParams.force.strength).y((data: BubblesSimulationDatum) => {
346
- return SeriesContainerPositionMap.get(data.seriesLabel)!.centerY
347
- }))
348
-
349
- force!.alpha(1).restart()
350
- }
351
-
352
- function highlight ({ bubblesSelection, highlightIds, fullChartParams }: {
353
- bubblesSelection: d3.Selection<SVGGElement, BubblesDatum, any, any>
354
- fullChartParams: ChartParams
355
- highlightIds: string[]
356
- }) {
357
- bubblesSelection.interrupt('highlight')
358
-
359
- if (!highlightIds.length) {
360
- bubblesSelection
361
- .transition('highlight')
362
- .style('opacity', 1)
363
- return
364
- }
365
-
366
- bubblesSelection.each((d, i, n) => {
367
- const segment = d3.select(n[i])
368
-
369
- if (highlightIds.includes(d.id)) {
370
- segment
371
- .style('opacity', 1)
372
- .transition('highlight')
373
- .ease(d3.easeElastic)
374
- .duration(500)
375
- } else {
376
- // 取消放大
377
- segment
378
- .style('opacity', fullChartParams.styles.unhighlightedOpacity)
379
- }
380
- })
381
- }
382
-
383
-
384
- export const Bubbles = defineSeriesPlugin(pluginConfig)(({ selection, name, observer, subject }) => {
385
-
386
- const destroy$ = new Subject()
387
-
388
- // 紀錄前一次bubble data
389
- let LastBubbleDataMap: Map<string, BubblesDatum> = new Map()
390
-
391
-
392
- const sumSeries$ = observer.fullDataFormatter$.pipe(
393
- map(d => d.sumSeries),
394
- distinctUntilChanged()
395
- )
396
-
397
- const scaleType$ = observer.fullParams$.pipe(
398
- takeUntil(destroy$),
399
- map(d => d.arcScaleType),
400
- distinctUntilChanged()
401
- )
402
-
403
- const bubblesData$ = combineLatest({
404
- layout: observer.layout$,
405
- SeriesContainerPositionMap: observer.SeriesContainerPositionMap$,
406
- visibleComputedLayoutData: observer.visibleComputedLayoutData$,
407
- scaleType: scaleType$
408
- }).pipe(
409
- takeUntil(destroy$),
410
- switchMap(async (d) => d),
411
- map(data => {
412
- // console.log(data.visibleComputedLayoutData)
413
- return createBubblesData({
414
- visibleComputedLayoutData: data.visibleComputedLayoutData,
415
- LastBubbleDataMap,
416
- graphicWidth: data.layout.width,
417
- graphicHeight: data.layout.height,
418
- SeriesContainerPositionMap: data.SeriesContainerPositionMap,
419
- scaleType: data.scaleType
420
- })
421
- }),
422
- shareReplay(1)
423
- )
424
-
425
- // 紀錄前一次bubble data
426
- bubblesData$.subscribe(d => {
427
- LastBubbleDataMap = new Map(d.map(_d => [_d.id, _d])) // key: id, value: datum
428
- })
429
-
430
- const highlightTarget$ = observer.fullChartParams$.pipe(
431
- takeUntil(destroy$),
432
- map(d => d.highlightTarget),
433
- distinctUntilChanged()
434
- )
435
-
436
- const bubblesSelection$ = combineLatest({
437
- bubblesData: bubblesData$,
438
- fullParams: observer.fullParams$,
439
- SeriesContainerPositionMap: observer.SeriesContainerPositionMap$,
440
- sumSeries: sumSeries$
441
- }).pipe(
442
- takeUntil(destroy$),
443
- switchMap(async (d) => d),
444
- map(data => {
445
- if (force) {
446
- force.stop()
447
- }
448
-
449
- const bubblesSelection = renderBubbles({
450
- selection,
451
- bubblesData: data.bubblesData,
452
- fullParams: data.fullParams,
453
- sumSeries: data.sumSeries
454
- })
455
-
456
- force = makeForce(bubblesSelection, data.fullParams)
457
-
458
- force.nodes(data.bubblesData)
459
-
460
- groupBubbles({
461
- fullParams: data.fullParams,
462
- SeriesContainerPositionMap: data.SeriesContainerPositionMap
463
- // graphicWidth: data.layout.width,
464
- // graphicHeight: data.layout.height
465
- })
466
-
467
- // setTimeout(() => {
468
- // force!.alphaTarget(0)
469
- // force!.alpha(1).restart()
470
- // }, 2000)
471
-
472
- return bubblesSelection
473
- })
474
- )
475
-
476
- combineLatest({
477
- bubblesSelection: bubblesSelection$,
478
- computedData: observer.computedData$,
479
- SeriesDataMap: observer.SeriesDataMap$,
480
- highlightTarget: highlightTarget$,
481
- }).pipe(
482
- takeUntil(destroy$),
483
- switchMap(async (d) => d)
484
- ).subscribe(data => {
485
-
486
- data.bubblesSelection
487
- .on('mouseover', (event, datum) => {
488
- // this.tooltip!.setDatum({
489
- // data: d,
490
- // x: d3.event.clientX,
491
- // y: d3.event.clientY
492
- // })
493
-
494
- subject.event$.next({
495
- type: 'series',
496
- eventName: 'mouseover',
497
- pluginName: name,
498
- highlightTarget: data.highlightTarget,
499
- datum,
500
- series: data.SeriesDataMap.get(datum.seriesLabel)!,
501
- seriesIndex: datum.seriesIndex,
502
- seriesLabel: datum.seriesLabel,
503
- event,
504
- data: data.computedData
505
- })
506
- })
507
- .on('mousemove', (event, datum) => {
508
- // this.tooltip!.setDatum({
509
- // x: d3.event.clientX,
510
- // y: d3.event.clientY
511
- // })
512
-
513
- subject.event$.next({
514
- type: 'series',
515
- eventName: 'mousemove',
516
- pluginName: name,
517
- highlightTarget: data.highlightTarget,
518
- datum,
519
- series: data.SeriesDataMap.get(datum.seriesLabel)!,
520
- seriesIndex: datum.seriesIndex,
521
- seriesLabel: datum.seriesLabel,
522
- event,
523
- data: data.computedData
524
- })
525
- })
526
- .on('mouseout', (event, datum) => {
527
- // this.tooltip!.remove()
528
-
529
- subject.event$.next({
530
- type: 'series',
531
- eventName: 'mouseout',
532
- pluginName: name,
533
- highlightTarget: data.highlightTarget,
534
- datum,
535
- series: data.SeriesDataMap.get(datum.seriesLabel)!,
536
- seriesIndex: datum.seriesIndex,
537
- seriesLabel: datum.seriesLabel,
538
- event,
539
- data: data.computedData
540
- })
541
- })
542
- .on('click', (event, datum) => {
543
-
544
- subject.event$.next({
545
- type: 'series',
546
- eventName: 'click',
547
- pluginName: name,
548
- highlightTarget: data.highlightTarget,
549
- datum,
550
- series: data.SeriesDataMap.get(datum.seriesLabel)!,
551
- seriesIndex: datum.seriesIndex,
552
- seriesLabel: datum.seriesLabel,
553
- event,
554
- data: data.computedData
555
- })
556
- })
557
- .call(drag() as any)
558
-
559
-
560
- })
561
-
562
- combineLatest({
563
- bubblesSelection: bubblesSelection$,
564
- bubblesData: bubblesData$,
565
- highlight: observer.seriesHighlight$.pipe(
566
- map(data => data.map(d => d.id))
567
- ),
568
- fullChartParams: observer.fullChartParams$,
569
- fullParams: observer.fullParams$,
570
- sumSeries: sumSeries$,
571
- // layout: observer.layout$,
572
- SeriesContainerPositionMap: observer.SeriesContainerPositionMap$,
573
- }).pipe(
574
- takeUntil(destroy$),
575
- switchMap(async d => d)
576
- ).subscribe(data => {
577
- highlight({
578
- bubblesSelection: data.bubblesSelection,
579
- highlightIds: data.highlight,
580
- fullChartParams: data.fullChartParams
581
- })
582
-
583
- // if (data.fullParams.highlightRIncrease) {
584
- // setHighlightData ({
585
- // data: data.bubblesData,
586
- // highlightRIncrease: data.fullParams.highlightRIncrease,
587
- // highlightIds: data.highlight
588
- // })
589
- // data.bubblesSelection.select('circle')
590
- // // .transition()
591
- // // .duration(200)
592
- // .attr("r", (d) => d.r)
593
-
594
- // force!.nodes(data.bubblesData)
595
-
596
- // groupBubbles({
597
- // fullParams: data.fullParams,
598
- // SeriesContainerPositionMap: data.SeriesContainerPositionMap
599
- // })
600
- // }
601
-
602
- })
603
-
604
- return () => {
605
- destroy$.next(undefined)
606
- }
1
+ import * as d3 from 'd3'
2
+ import {
3
+ combineLatest,
4
+ map,
5
+ switchMap,
6
+ first,
7
+ takeUntil,
8
+ Subject,
9
+ Observable,
10
+ distinctUntilChanged,
11
+ shareReplay} from 'rxjs'
12
+ import type { DefinePluginConfig } from '../../../lib/core-types'
13
+ import type {
14
+ ChartParams,
15
+ DatumValue,
16
+ DataSeries,
17
+ EventName,
18
+ ComputedDataSeries,
19
+ ComputedDatumSeries,
20
+ ContainerPosition } from '../../../lib/core-types'
21
+ import {
22
+ defineSeriesPlugin } from '../../../lib/core'
23
+ import type { BubblesParams, ArcScaleType } from '../../../lib/plugins-basic-types'
24
+ import { DEFAULT_BUBBLES_PARAMS } from '../defaults'
25
+ import { renderCircleText } from '../../utils/d3Graphics'
26
+ import { LAYER_INDEX_OF_GRAPHIC } from '../../const'
27
+ import { getDatumColor } from '../../utils/orbchartsUtils'
28
+
29
+ interface BubblesDatum extends ComputedDatumSeries {
30
+ x: number
31
+ y: number
32
+ r: number
33
+ _originR: number // 紀錄變化前的r
34
+ }
35
+
36
+ type BubblesSimulationDatum = BubblesDatum & d3.SimulationNodeDatum
37
+
38
+ const pluginName = 'Bubbles'
39
+
40
+ const baseLineHeight = 12 // 未變形前的字體大小(代入計算用而已,數字多少都不會有影響)
41
+
42
+ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_BUBBLES_PARAMS> = {
43
+ name: pluginName,
44
+ defaultParams: DEFAULT_BUBBLES_PARAMS,
45
+ layerIndex: LAYER_INDEX_OF_GRAPHIC,
46
+ validator: (params, { validateColumns }) => {
47
+ const result = validateColumns(params, {
48
+ force: {
49
+ toBeTypes: ['object']
50
+ },
51
+ bubbleLabel: {
52
+ toBeTypes: ['object']
53
+ },
54
+ arcScaleType: {
55
+ toBe: '"area" | "radius"',
56
+ test: (value) => value === 'area' || value === 'radius'
57
+ }
58
+ })
59
+ if (params.force) {
60
+ const forceResult = validateColumns(params.force, {
61
+ velocityDecay: {
62
+ toBeTypes: ['number']
63
+ },
64
+ collisionSpacing: {
65
+ toBeTypes: ['number']
66
+ },
67
+ strength: {
68
+ toBeTypes: ['number']
69
+ },
70
+ })
71
+ if (forceResult.status === 'error') {
72
+ return forceResult
73
+ }
74
+ }
75
+ if (params.bubbleLabel) {
76
+ const bubbleLabelResult = validateColumns(params.bubbleLabel, {
77
+ colorType: {
78
+ toBeOption: 'ColorType'
79
+ },
80
+ fillRate: {
81
+ toBeTypes: ['number']
82
+ },
83
+ lineHeight: {
84
+ toBeTypes: ['number']
85
+ },
86
+ maxLineLength: {
87
+ toBeTypes: ['number']
88
+ },
89
+ })
90
+ if (bubbleLabelResult.status === 'error') {
91
+ return bubbleLabelResult
92
+ }
93
+ }
94
+ return result
95
+ }
96
+ }
97
+
98
+ let force: d3.Simulation<d3.SimulationNodeDatum, undefined> | undefined
99
+
100
+ function makeForce (bubblesSelection: d3.Selection<SVGGElement, BubblesDatum, any, any>, fullParams: BubblesParams) {
101
+ return d3.forceSimulation()
102
+ .velocityDecay(fullParams.force!.velocityDecay!)
103
+ // .alphaDecay(0.2)
104
+ .force(
105
+ "collision",
106
+ d3.forceCollide()
107
+ .radius((d: d3.SimulationNodeDatum & BubblesDatum) => {
108
+ return d.r + fullParams.force!.collisionSpacing
109
+ })
110
+ // .strength(0.01)
111
+ )
112
+ .force("charge", d3.forceManyBody().strength((d: d3.SimulationNodeDatum & BubblesDatum) => {
113
+ return - Math.pow(d.r, 2.0) * fullParams.force!.strength
114
+ }))
115
+ // .force("charge", d3.forceManyBody().strength(-2000))
116
+ // .force("collision", d3.forceCollide(60).strength(1)) // @Q@ 60為泡泡的R,暫時是先寫死的
117
+ // .force("x", d3.forceX().strength(forceStrength).x(this.graphicWidth / 2))
118
+ // .force("y", d3.forceY().strength(forceStrength).y(this.graphicHeight / 2))
119
+ .on("tick", () => {
120
+ // if (!bubblesSelection) {
121
+ // return
122
+ // }
123
+ bubblesSelection
124
+ .attr("transform", (d) => {
125
+ return `translate(${d.x},${d.y})`
126
+ })
127
+ // .attr("cx", (d) => d.x)
128
+ // .attr("cy", (d) => d.y)
129
+ })
130
+
131
+ }
132
+
133
+
134
+ // // 計算最大泡泡的半徑
135
+ // function getMaxR ({ data, totalR, maxValue, avgValue }: {
136
+ // data: DatumValue[]
137
+ // totalR: number
138
+ // maxValue: number
139
+ // avgValue: number
140
+ // }) {
141
+ // // 平均r(假想是正方型來計算的,比如說大正方型裡有4個正方型,則 r = width/Math.sqrt(4)/2)
142
+ // const avgR = totalR / Math.sqrt(data.length)
143
+ // const avgSize = avgR * avgR * Math.PI
144
+ // const sizeRate = avgSize / avgValue
145
+ // const maxSize = maxValue * sizeRate
146
+ // const maxR = Math.pow(maxSize / Math.PI, 0.5)
147
+
148
+ // const modifier = 0.785 // @Q@ 因為以下公式是假設泡泡是正方型來計算,所以畫出來的圖會偏大一些,這個數值是用來修正用的
149
+ // return maxR * modifier
150
+ // }
151
+
152
+ function createBubblesData ({ visibleComputedLayoutData, LastBubbleDataMap, graphicWidth, graphicHeight, SeriesContainerPositionMap, scaleType }: {
153
+ visibleComputedLayoutData: ComputedDataSeries
154
+ LastBubbleDataMap: Map<string, BubblesDatum>
155
+ graphicWidth: number
156
+ graphicHeight: number
157
+ SeriesContainerPositionMap: Map<string, ContainerPosition>
158
+ scaleType: ArcScaleType
159
+ // highlightIds: string[]
160
+ }): BubblesDatum[] {
161
+ // 虛擬大圓(所有小圓聚合起來的大圓)的半徑
162
+ const totalR = Math.min(...[graphicWidth, graphicHeight]) / 2
163
+
164
+ const data = visibleComputedLayoutData.flat()
165
+
166
+ const totalValue = data.reduce((acc, current) => acc + current.value, 0)
167
+
168
+ // 半徑比例尺
169
+ const radiusScale = d3.scalePow()
170
+ .domain([0, totalValue])
171
+ .range([0, totalR])
172
+ .exponent(scaleType === 'area'
173
+ ? 0.5 // 數值映射面積(0.5為取平方根)
174
+ : 1 // 數值映射半徑
175
+ )
176
+
177
+ // 縮放比例 - 確保多個小圓的總面積等於大圓的面積
178
+ const scaleFactor = scaleType === 'area'
179
+ ? 1
180
+ // 當數值映射半徑時,多個小圓的總面積會小於大圓的面積,所以要計算縮放比例
181
+ : (() => {
182
+ const totalArea = totalR * totalR * Math.PI
183
+ return Math.sqrt(totalArea / d3.sum(data, d => Math.PI * Math.pow(radiusScale(d.value), 2)))
184
+ })()
185
+
186
+ // 調整係數 - 因為圓和圓之間的空隙造成聚合起來的大圓會略大,所以稍作微調
187
+ const adjustmentFactor = 0.9
188
+
189
+ return data.map((_d) => {
190
+ const d: BubblesDatum = _d as BubblesDatum
191
+
192
+ const existDatum = LastBubbleDataMap.get(d.id)
193
+
194
+ if (existDatum) {
195
+ // 使用現有的座標
196
+ d.x = existDatum.x
197
+ d.y = existDatum.y
198
+ } else {
199
+ const seriesContainerPosition = SeriesContainerPositionMap.get(d.seriesLabel)!
200
+ d.x = Math.random() * seriesContainerPosition.width
201
+ d.y = Math.random() * seriesContainerPosition.height
202
+ }
203
+ const r = radiusScale!(d.value ?? 0)! * scaleFactor * adjustmentFactor
204
+ d.r = r
205
+ d._originR = r
206
+
207
+ return d
208
+ })
209
+ }
210
+
211
+ function renderBubbles ({ selection, bubblesData, fullParams, fullChartParams, sumSeries }: {
212
+ selection: d3.Selection<SVGGElement, any, any, any>
213
+ bubblesData: BubblesDatum[]
214
+ fullParams: BubblesParams
215
+ fullChartParams: ChartParams
216
+ sumSeries: boolean
217
+ }) {
218
+ const bubblesSelection = selection.selectAll<SVGGElement, BubblesDatum>("g")
219
+ .data(bubblesData, (d) => d.id)
220
+ .join(
221
+ enter => {
222
+ const enterSelection = enter
223
+ .append('g')
224
+ .attr('cursor', 'pointer')
225
+ .attr('font-size', baseLineHeight)
226
+ .style('fill', '#ffffff')
227
+ .attr("text-anchor", "middle")
228
+
229
+ enterSelection
230
+ .append("circle")
231
+ .attr("class", "node")
232
+ .attr("cx", 0)
233
+ .attr("cy", 0)
234
+ // .attr("r", 1e-6)
235
+ .attr('fill', (d) => d.color)
236
+ // .transition()
237
+ // .duration(500)
238
+
239
+ enterSelection
240
+ .append('text')
241
+ .style('opacity', 0.8)
242
+ .attr('pointer-events', 'none')
243
+
244
+ return enterSelection
245
+ },
246
+ update => {
247
+ return update
248
+ },
249
+ exit => {
250
+ return exit
251
+ .remove()
252
+ }
253
+ )
254
+ .attr("transform", (d) => {
255
+ return `translate(${d.x},${d.y})`
256
+ })
257
+
258
+ // 泡泡文字要使用的的資料欄位
259
+ const textDataColumn = sumSeries ? 'seriesLabel' : 'label'// 如果有合併series則使用seriesLabel
260
+
261
+ bubblesSelection.select('circle')
262
+ .transition()
263
+ .duration(200)
264
+ .attr("r", (d) => d.r)
265
+ .attr('fill', (d) => d.color)
266
+ bubblesSelection
267
+ .each((d,i,g) => {
268
+ const gSelection = d3.select(g[i])
269
+ const text = d[textDataColumn] ?? ''
270
+
271
+ gSelection.call(renderCircleText, {
272
+ text,
273
+ radius: d.r * fullParams.bubbleLabel.fillRate,
274
+ lineHeight: baseLineHeight * fullParams.bubbleLabel.lineHeight,
275
+ isBreakAll: text.length <= fullParams.bubbleLabel.maxLineLength
276
+ ? false
277
+ : fullParams.bubbleLabel.wordBreakAll
278
+ })
279
+
280
+ // -- text color --
281
+ gSelection.select('text').attr('fill', _ => getDatumColor({
282
+ datum: d,
283
+ colorType: fullParams.bubbleLabel.colorType,
284
+ fullChartParams: fullChartParams
285
+ }))
286
+
287
+ })
288
+
289
+ return bubblesSelection
290
+ }
291
+
292
+ function setHighlightData ({ data, highlightRIncrease, highlightIds }: {
293
+ data: BubblesDatum[]
294
+ // fullParams: BubblesParams
295
+ highlightRIncrease: number
296
+ highlightIds: string[]
297
+ }) {
298
+ if (highlightRIncrease == 0) {
299
+ return
300
+ }
301
+ if (!highlightIds.length) {
302
+ data.forEach(d => d.r = d._originR)
303
+ return
304
+ }
305
+ data.forEach(d => {
306
+ if (highlightIds.includes(d.id)) {
307
+ d.r = d._originR + highlightRIncrease
308
+ } else {
309
+ d.r = d._originR
310
+ }
311
+ })
312
+ }
313
+
314
+ function drag (): d3.DragBehavior<Element, unknown, unknown> {
315
+ return d3.drag()
316
+ .on("start", (event, d: any) => {
317
+ if (!event.active) {
318
+ force!.alpha(1).restart()
319
+ }
320
+ d.fx = d.x
321
+ d.fy = d.y
322
+ })
323
+ .on("drag", (event, d: any) => {
324
+ if (!event.active) {
325
+ force!.alphaTarget(0)
326
+ }
327
+ d.fx = event.x
328
+ d.fy = event.y
329
+ })
330
+ .on("end", (event, d: any) => {
331
+ d.fx = null
332
+ d.fy = null
333
+ })
334
+ }
335
+
336
+
337
+ // private nodeTypePos (d: any) {
338
+ // console.log(d)
339
+ // console.log(this.TypeCenters.get(d.type)!)
340
+ // const typeCenter = this.TypeCenters.get(d.type)!
341
+ // return typeCenter ? typeCenter.x : 0
342
+ // }
343
+
344
+ function groupBubbles ({ fullParams, SeriesContainerPositionMap }: {
345
+ fullParams: BubblesParams
346
+ // graphicWidth: number
347
+ // graphicHeight: number
348
+ SeriesContainerPositionMap: Map<string, ContainerPosition>
349
+ }) {
350
+ // console.log('groupBubbles')
351
+ force!
352
+ // .force('x', d3.forceX().strength(fullParams.force.strength).x(graphicWidth / 2))
353
+ // .force('y', d3.forceY().strength(fullParams.force.strength).y(graphicHeight / 2))
354
+ .force('x', d3.forceX().strength(fullParams.force.strength).x((data: BubblesSimulationDatum) => {
355
+ return SeriesContainerPositionMap.get(data.seriesLabel)!.centerX
356
+ }))
357
+ .force('y', d3.forceY().strength(fullParams.force.strength).y((data: BubblesSimulationDatum) => {
358
+ return SeriesContainerPositionMap.get(data.seriesLabel)!.centerY
359
+ }))
360
+
361
+ force!.alpha(1).restart()
362
+ }
363
+
364
+ function highlight ({ bubblesSelection, highlightIds, fullChartParams }: {
365
+ bubblesSelection: d3.Selection<SVGGElement, BubblesDatum, any, any>
366
+ fullChartParams: ChartParams
367
+ highlightIds: string[]
368
+ }) {
369
+ bubblesSelection.interrupt('highlight')
370
+
371
+ if (!highlightIds.length) {
372
+ bubblesSelection
373
+ .transition('highlight')
374
+ .style('opacity', 1)
375
+ return
376
+ }
377
+
378
+ bubblesSelection.each((d, i, n) => {
379
+ const segment = d3.select(n[i])
380
+
381
+ if (highlightIds.includes(d.id)) {
382
+ segment
383
+ .style('opacity', 1)
384
+ .transition('highlight')
385
+ .ease(d3.easeElastic)
386
+ .duration(500)
387
+ } else {
388
+ // 取消放大
389
+ segment
390
+ .style('opacity', fullChartParams.styles.unhighlightedOpacity)
391
+ }
392
+ })
393
+ }
394
+
395
+
396
+ export const Bubbles = defineSeriesPlugin(pluginConfig)(({ selection, name, observer, subject }) => {
397
+
398
+ const destroy$ = new Subject()
399
+
400
+ // 紀錄前一次bubble data
401
+ let LastBubbleDataMap: Map<string, BubblesDatum> = new Map()
402
+
403
+
404
+ const sumSeries$ = observer.fullDataFormatter$.pipe(
405
+ map(d => d.sumSeries),
406
+ distinctUntilChanged()
407
+ )
408
+
409
+ const scaleType$ = observer.fullParams$.pipe(
410
+ takeUntil(destroy$),
411
+ map(d => d.arcScaleType),
412
+ distinctUntilChanged()
413
+ )
414
+
415
+ const bubblesData$ = combineLatest({
416
+ layout: observer.layout$,
417
+ SeriesContainerPositionMap: observer.SeriesContainerPositionMap$,
418
+ visibleComputedLayoutData: observer.visibleComputedLayoutData$,
419
+ scaleType: scaleType$
420
+ }).pipe(
421
+ takeUntil(destroy$),
422
+ switchMap(async (d) => d),
423
+ map(data => {
424
+ // console.log(data.visibleComputedLayoutData)
425
+ return createBubblesData({
426
+ visibleComputedLayoutData: data.visibleComputedLayoutData,
427
+ LastBubbleDataMap,
428
+ graphicWidth: data.layout.width,
429
+ graphicHeight: data.layout.height,
430
+ SeriesContainerPositionMap: data.SeriesContainerPositionMap,
431
+ scaleType: data.scaleType
432
+ })
433
+ }),
434
+ shareReplay(1)
435
+ )
436
+
437
+ // 紀錄前一次bubble data
438
+ bubblesData$.subscribe(d => {
439
+ LastBubbleDataMap = new Map(d.map(_d => [_d.id, _d])) // key: id, value: datum
440
+ })
441
+
442
+ const highlightTarget$ = observer.fullChartParams$.pipe(
443
+ takeUntil(destroy$),
444
+ map(d => d.highlightTarget),
445
+ distinctUntilChanged()
446
+ )
447
+
448
+ const bubblesSelection$ = combineLatest({
449
+ bubblesData: bubblesData$,
450
+ fullParams: observer.fullParams$,
451
+ fullChartParams: observer.fullChartParams$,
452
+ SeriesContainerPositionMap: observer.SeriesContainerPositionMap$,
453
+ sumSeries: sumSeries$
454
+ }).pipe(
455
+ takeUntil(destroy$),
456
+ switchMap(async (d) => d),
457
+ map(data => {
458
+ if (force) {
459
+ force.stop()
460
+ }
461
+
462
+ const bubblesSelection = renderBubbles({
463
+ selection,
464
+ bubblesData: data.bubblesData,
465
+ fullParams: data.fullParams,
466
+ fullChartParams: data.fullChartParams,
467
+ sumSeries: data.sumSeries
468
+ })
469
+
470
+ force = makeForce(bubblesSelection, data.fullParams)
471
+
472
+ force.nodes(data.bubblesData)
473
+
474
+ groupBubbles({
475
+ fullParams: data.fullParams,
476
+ SeriesContainerPositionMap: data.SeriesContainerPositionMap
477
+ // graphicWidth: data.layout.width,
478
+ // graphicHeight: data.layout.height
479
+ })
480
+
481
+ // setTimeout(() => {
482
+ // force!.alphaTarget(0)
483
+ // force!.alpha(1).restart()
484
+ // }, 2000)
485
+
486
+ return bubblesSelection
487
+ })
488
+ )
489
+
490
+ combineLatest({
491
+ bubblesSelection: bubblesSelection$,
492
+ computedData: observer.computedData$,
493
+ SeriesDataMap: observer.SeriesDataMap$,
494
+ highlightTarget: highlightTarget$,
495
+ }).pipe(
496
+ takeUntil(destroy$),
497
+ switchMap(async (d) => d)
498
+ ).subscribe(data => {
499
+
500
+ data.bubblesSelection
501
+ .on('mouseover', (event, datum) => {
502
+ // this.tooltip!.setDatum({
503
+ // data: d,
504
+ // x: d3.event.clientX,
505
+ // y: d3.event.clientY
506
+ // })
507
+
508
+ subject.event$.next({
509
+ type: 'series',
510
+ eventName: 'mouseover',
511
+ pluginName: name,
512
+ highlightTarget: data.highlightTarget,
513
+ datum,
514
+ series: data.SeriesDataMap.get(datum.seriesLabel)!,
515
+ seriesIndex: datum.seriesIndex,
516
+ seriesLabel: datum.seriesLabel,
517
+ event,
518
+ data: data.computedData
519
+ })
520
+ })
521
+ .on('mousemove', (event, datum) => {
522
+ // this.tooltip!.setDatum({
523
+ // x: d3.event.clientX,
524
+ // y: d3.event.clientY
525
+ // })
526
+
527
+ subject.event$.next({
528
+ type: 'series',
529
+ eventName: 'mousemove',
530
+ pluginName: name,
531
+ highlightTarget: data.highlightTarget,
532
+ datum,
533
+ series: data.SeriesDataMap.get(datum.seriesLabel)!,
534
+ seriesIndex: datum.seriesIndex,
535
+ seriesLabel: datum.seriesLabel,
536
+ event,
537
+ data: data.computedData
538
+ })
539
+ })
540
+ .on('mouseout', (event, datum) => {
541
+ // this.tooltip!.remove()
542
+
543
+ subject.event$.next({
544
+ type: 'series',
545
+ eventName: 'mouseout',
546
+ pluginName: name,
547
+ highlightTarget: data.highlightTarget,
548
+ datum,
549
+ series: data.SeriesDataMap.get(datum.seriesLabel)!,
550
+ seriesIndex: datum.seriesIndex,
551
+ seriesLabel: datum.seriesLabel,
552
+ event,
553
+ data: data.computedData
554
+ })
555
+ })
556
+ .on('click', (event, datum) => {
557
+
558
+ subject.event$.next({
559
+ type: 'series',
560
+ eventName: 'click',
561
+ pluginName: name,
562
+ highlightTarget: data.highlightTarget,
563
+ datum,
564
+ series: data.SeriesDataMap.get(datum.seriesLabel)!,
565
+ seriesIndex: datum.seriesIndex,
566
+ seriesLabel: datum.seriesLabel,
567
+ event,
568
+ data: data.computedData
569
+ })
570
+ })
571
+ .call(drag() as any)
572
+
573
+
574
+ })
575
+
576
+ combineLatest({
577
+ bubblesSelection: bubblesSelection$,
578
+ bubblesData: bubblesData$,
579
+ highlight: observer.seriesHighlight$.pipe(
580
+ map(data => data.map(d => d.id))
581
+ ),
582
+ fullChartParams: observer.fullChartParams$,
583
+ fullParams: observer.fullParams$,
584
+ sumSeries: sumSeries$,
585
+ // layout: observer.layout$,
586
+ SeriesContainerPositionMap: observer.SeriesContainerPositionMap$,
587
+ }).pipe(
588
+ takeUntil(destroy$),
589
+ switchMap(async d => d)
590
+ ).subscribe(data => {
591
+ highlight({
592
+ bubblesSelection: data.bubblesSelection,
593
+ highlightIds: data.highlight,
594
+ fullChartParams: data.fullChartParams
595
+ })
596
+
597
+ // if (data.fullParams.highlightRIncrease) {
598
+ // setHighlightData ({
599
+ // data: data.bubblesData,
600
+ // highlightRIncrease: data.fullParams.highlightRIncrease,
601
+ // highlightIds: data.highlight
602
+ // })
603
+ // data.bubblesSelection.select('circle')
604
+ // // .transition()
605
+ // // .duration(200)
606
+ // .attr("r", (d) => d.r)
607
+
608
+ // force!.nodes(data.bubblesData)
609
+
610
+ // groupBubbles({
611
+ // fullParams: data.fullParams,
612
+ // SeriesContainerPositionMap: data.SeriesContainerPositionMap
613
+ // })
614
+ // }
615
+
616
+ })
617
+
618
+ return () => {
619
+ destroy$.next(undefined)
620
+ }
607
621
  })