@orbcharts/plugins-basic 3.0.5 → 3.0.6

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orbcharts/plugins-basic",
3
- "version": "3.0.5",
3
+ "version": "3.0.6",
4
4
  "description": "Plugins for OrbCharts",
5
5
  "author": "Blue Planet Inc.",
6
6
  "license": "Apache-2.0",
@@ -28,6 +28,7 @@ export const DEFAULT_BUBBLES_PARAMS: BubblesParams = {
28
28
  // highlightRIncrease: 0,
29
29
  arcScaleType: 'area'
30
30
  }
31
+ DEFAULT_BUBBLES_PARAMS.bubbleLabel.labelFn.toString = () => `d => String(d.label)`
31
32
 
32
33
  export const DEFAULT_PIE_PARAMS: PieParams = {
33
34
  outerRadius: 0.85,
@@ -363,14 +363,26 @@ function groupBubbles ({ _simulation, fullParams, DatumContainerPositionMap }: {
363
363
  DatumContainerPositionMap: Map<string, ContainerPosition>
364
364
  }) {
365
365
  // console.log('groupBubbles')
366
+
366
367
  _simulation!
367
368
  // .force('x', d3.forceX().strength(fullParams.force.strength).x(graphicWidth / 2))
368
369
  // .force('y', d3.forceY().strength(fullParams.force.strength).y(graphicHeight / 2))
369
370
  .force('x', d3.forceX().strength(fullParams.force.strength).x((data: BubblesSimulationDatum) => {
370
- return DatumContainerPositionMap.get(data.id)!.centerX
371
+ let position = DatumContainerPositionMap.get(data.id)!
372
+ if (!position) {
373
+ // 有時候可能會因為時間差而找不到,這時候取第一筆
374
+ position = DatumContainerPositionMap.get(Array.from(DatumContainerPositionMap.keys())[0])
375
+ }
376
+
377
+ return position?.centerX ?? null
371
378
  }))
372
379
  .force('y', d3.forceY().strength(fullParams.force.strength).y((data: BubblesSimulationDatum) => {
373
- return DatumContainerPositionMap.get(data.id)!.centerY
380
+ let position = DatumContainerPositionMap.get(data.id)!
381
+ if (!position) {
382
+ position = DatumContainerPositionMap.get(Array.from(DatumContainerPositionMap.keys())[0])
383
+ }
384
+
385
+ return position?.centerY ?? null
374
386
  }))
375
387
 
376
388
  // force!.alpha(1).restart()
@@ -540,9 +552,12 @@ export const Bubbles = defineSeriesPlugin(pluginConfig)(({ selection, name, obse
540
552
 
541
553
  // 第一次計算時沒有 x, y 座標,取得預設座標。第二次之後計算使用原有的座標
542
554
  if (d.x === undefined || d.y === undefined) {
543
- const { x, y } = data.DatumInitXYMap.get(d.id)!
544
- d.x = x
545
- d.y = y
555
+ let xy = data.DatumInitXYMap.get(d.id)!
556
+ if (!xy) {
557
+ xy = data.DatumInitXYMap.get(Array.from(data.DatumInitXYMap.keys())[0])
558
+ }
559
+ d.x = xy.x
560
+ d.y = xy.y
546
561
  }
547
562
  d.r = data.DatumRMap.get(d.id)!
548
563
  d._originR = d.r