@orbcharts/plugins-basic 3.0.3 → 3.0.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.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@orbcharts/plugins-basic",
|
3
|
-
"version": "3.0.
|
3
|
+
"version": "3.0.4",
|
4
4
|
"description": "Plugins for OrbCharts",
|
5
5
|
"author": "Blue Planet Inc.",
|
6
6
|
"license": "Apache-2.0",
|
@@ -39,7 +39,7 @@
|
|
39
39
|
"vite-plugin-dts": "^3.7.3"
|
40
40
|
},
|
41
41
|
"dependencies": {
|
42
|
-
"@orbcharts/core": "^3.0.
|
42
|
+
"@orbcharts/core": "^3.0.4",
|
43
43
|
"@orbcharts/core-types": "^3.0.2",
|
44
44
|
"@orbcharts/plugins-basic-types": "^3.0.2",
|
45
45
|
"d3": "^7.8.5",
|
@@ -498,9 +498,12 @@ export const createBaseOrdinalBubbles: BasePluginFn<BaseRacingBarsContext> = (pl
|
|
498
498
|
_refDatum: d // reference到資料本身
|
499
499
|
}
|
500
500
|
})
|
501
|
-
|
501
|
+
|
502
502
|
// d._visibleValue = [] // highlight的時候才寫入
|
503
|
-
return
|
503
|
+
return {
|
504
|
+
...d,
|
505
|
+
graphicValue
|
506
|
+
}
|
504
507
|
})
|
505
508
|
})
|
506
509
|
})
|
@@ -624,7 +627,6 @@ export const createBaseOrdinalBubbles: BasePluginFn<BaseRacingBarsContext> = (pl
|
|
624
627
|
// datum._visibleValue = [datum.value[valueDatum.index]]
|
625
628
|
// 只顯示總數
|
626
629
|
// datum._visibleValue = [datum.sum]
|
627
|
-
|
628
630
|
event$.next({
|
629
631
|
type: 'multiValue',
|
630
632
|
eventName: 'mousemove',
|