@orbcharts/plugins-basic 3.0.0-beta.2 → 3.0.0-beta.20

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 (182) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-plugins-basic.es.js +15169 -10684
  3. package/dist/orbcharts-plugins-basic.umd.js +296 -83
  4. package/dist/src/base/BaseBars.d.ts +4 -4
  5. package/dist/src/base/BaseBarsTriangle.d.ts +4 -4
  6. package/dist/src/base/BaseDots.d.ts +4 -4
  7. package/dist/src/base/BaseGroupAxis.d.ts +2 -2
  8. package/dist/src/base/BaseLegend.d.ts +1 -1
  9. package/dist/src/base/BaseLineAreas.d.ts +5 -5
  10. package/dist/src/base/BaseLines.d.ts +5 -5
  11. package/dist/src/base/BaseRacingBars.d.ts +23 -0
  12. package/dist/src/base/BaseRacingLabels.d.ts +20 -0
  13. package/dist/src/base/BaseRacingValueLabels.d.ts +20 -0
  14. package/dist/src/base/{BaseBarStack.d.ts → BaseStackedBars.d.ts} +8 -8
  15. package/dist/src/base/BaseValueAxis.d.ts +6 -8
  16. package/dist/src/base/BaseXAxis.d.ts +20 -0
  17. package/dist/src/base/BaseYAxis.d.ts +18 -0
  18. package/dist/src/grid/defaults.d.ts +5 -5
  19. package/dist/src/grid/gridObservables.d.ts +12 -5
  20. package/dist/src/grid/index.d.ts +3 -3
  21. package/dist/src/grid/plugins/GroupZoom.d.ts +1 -0
  22. package/dist/src/grid/plugins/StackedBars.d.ts +1 -0
  23. package/dist/src/grid/plugins/StackedValueAxis.d.ts +1 -0
  24. package/dist/src/index.d.ts +2 -0
  25. package/dist/src/multiGrid/defaults.d.ts +4 -4
  26. package/dist/src/multiGrid/index.d.ts +3 -3
  27. package/dist/src/multiGrid/plugins/MultiStackedBars.d.ts +1 -0
  28. package/dist/src/multiGrid/plugins/MultiStackedValueAxis.d.ts +1 -0
  29. package/dist/src/multiGrid/plugins/OverlappingStackedValueAxes.d.ts +1 -0
  30. package/dist/src/multiValue/defaults.d.ts +13 -0
  31. package/dist/src/multiValue/index.d.ts +12 -0
  32. package/dist/src/multiValue/multiValueObservables.d.ts +56 -0
  33. package/dist/src/multiValue/plugins/MultiValueLegend.d.ts +1 -0
  34. package/dist/src/multiValue/plugins/MultiValueTooltip.d.ts +1 -0
  35. package/dist/src/multiValue/plugins/RacingBars.d.ts +1 -0
  36. package/dist/src/multiValue/plugins/RacingCounterTexts.d.ts +3 -0
  37. package/dist/src/multiValue/plugins/RacingValueAxis.d.ts +1 -0
  38. package/dist/src/multiValue/plugins/Scatter.d.ts +3 -0
  39. package/dist/src/multiValue/plugins/ScatterBubbles.d.ts +3 -0
  40. package/dist/src/multiValue/plugins/XAxis.d.ts +1 -0
  41. package/dist/src/multiValue/plugins/XYAux.d.ts +3 -0
  42. package/dist/src/multiValue/plugins/XYAxes.d.ts +1 -0
  43. package/dist/src/multiValue/plugins/XYAxes_legacy.d.ts +3 -0
  44. package/dist/src/multiValue/plugins/XZoom.d.ts +1 -0
  45. package/dist/src/noneData/plugins/Container.d.ts +0 -1
  46. package/dist/src/noneData/plugins/Tooltip.d.ts +0 -3
  47. package/dist/src/relationship/defaults.d.ts +6 -0
  48. package/dist/src/relationship/index.d.ts +5 -0
  49. package/dist/src/relationship/plugins/ForceDirected.d.ts +3 -0
  50. package/dist/src/relationship/plugins/ForceDirectedBubbles.d.ts +3 -0
  51. package/dist/src/relationship/plugins/RelationshipLegend.d.ts +1 -0
  52. package/dist/src/relationship/plugins/RelationshipTooltip.d.ts +1 -0
  53. package/dist/src/relationship/relationshipObservables.d.ts +1 -0
  54. package/dist/src/series/seriesObservables.d.ts +3 -3
  55. package/dist/src/utils/commonUtils.d.ts +2 -1
  56. package/dist/src/utils/d3Graphics.d.ts +2 -1
  57. package/dist/src/utils/d3Utils.d.ts +3 -2
  58. package/dist/src/utils/observables.d.ts +1 -1
  59. package/dist/src/utils/orbchartsUtils.d.ts +3 -3
  60. package/lib/core-types.ts +7 -7
  61. package/lib/core.ts +6 -6
  62. package/lib/plugins-basic-types.ts +6 -6
  63. package/package.json +44 -44
  64. package/src/base/BaseBars.ts +765 -765
  65. package/src/base/BaseBarsTriangle.ts +676 -674
  66. package/src/base/BaseDots.ts +464 -515
  67. package/src/base/BaseGroupAxis.ts +691 -679
  68. package/src/base/BaseLegend.ts +684 -680
  69. package/src/base/BaseLineAreas.ts +629 -629
  70. package/src/base/BaseLines.ts +706 -706
  71. package/src/base/BaseRacingBars.ts +552 -0
  72. package/src/base/BaseRacingLabels.ts +396 -0
  73. package/src/base/BaseRacingValueLabels.ts +403 -0
  74. package/src/base/{BaseBarStack.ts → BaseStackedBars.ts} +782 -780
  75. package/src/base/BaseTooltip.ts +386 -385
  76. package/src/base/BaseValueAxis.ts +600 -580
  77. package/src/base/BaseXAxis.ts +427 -0
  78. package/src/base/BaseYAxis.ts +389 -0
  79. package/src/base/types.ts +2 -2
  80. package/src/const.ts +30 -30
  81. package/src/grid/defaults.ts +213 -244
  82. package/src/grid/gridObservables.ts +612 -545
  83. package/src/grid/index.ts +16 -16
  84. package/src/grid/plugins/Bars.ts +69 -69
  85. package/src/grid/plugins/BarsPN.ts +66 -66
  86. package/src/grid/plugins/BarsTriangle.ts +73 -73
  87. package/src/grid/plugins/Dots.ts +68 -68
  88. package/src/grid/plugins/GridLegend.ts +107 -107
  89. package/src/grid/plugins/GridTooltip.ts +66 -66
  90. package/src/grid/plugins/GroupAux.ts +1120 -1098
  91. package/src/grid/plugins/GroupAxis.ts +73 -97
  92. package/src/grid/plugins/{GridZoom.ts → GroupZoom.ts} +218 -218
  93. package/src/grid/plugins/LineAreas.ts +65 -65
  94. package/src/grid/plugins/Lines.ts +59 -59
  95. package/src/grid/plugins/{BarStack.ts → StackedBars.ts} +64 -64
  96. package/src/grid/plugins/{ValueStackAxis.ts → StackedValueAxis.ts} +96 -95
  97. package/src/grid/plugins/ValueAxis.ts +94 -93
  98. package/src/index.ts +6 -9
  99. package/src/multiGrid/defaults.ts +244 -224
  100. package/src/multiGrid/index.ts +15 -15
  101. package/src/multiGrid/multiGridObservables.ts +50 -49
  102. package/src/multiGrid/plugins/MultiBars.ts +108 -108
  103. package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
  104. package/src/multiGrid/plugins/MultiDots.ts +102 -102
  105. package/src/multiGrid/plugins/MultiGridLegend.ts +169 -159
  106. package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
  107. package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
  108. package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
  109. package/src/multiGrid/plugins/MultiLines.ts +101 -101
  110. package/src/multiGrid/plugins/{MultiBarStack.ts → MultiStackedBars.ts} +106 -106
  111. package/src/multiGrid/plugins/{MultiValueStackAxis.ts → MultiStackedValueAxis.ts} +134 -133
  112. package/src/multiGrid/plugins/MultiValueAxis.ts +134 -133
  113. package/src/multiGrid/plugins/{OverlappingValueStackAxes.ts → OverlappingStackedValueAxes.ts} +300 -298
  114. package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -299
  115. package/src/multiValue/defaults.ts +432 -0
  116. package/src/multiValue/index.ts +13 -0
  117. package/src/multiValue/multiValueObservables.ts +667 -0
  118. package/src/multiValue/plugins/MultiValueLegend.ts +107 -0
  119. package/src/multiValue/plugins/MultiValueTooltip.ts +66 -0
  120. package/src/multiValue/plugins/RacingBars.ts +373 -0
  121. package/src/multiValue/plugins/RacingCounterTexts.ts +300 -0
  122. package/src/multiValue/plugins/RacingValueAxis.ts +115 -0
  123. package/src/multiValue/plugins/RankingAxis_legacy.ts +109 -0
  124. package/src/multiValue/plugins/Scatter.ts +426 -0
  125. package/src/multiValue/plugins/ScatterBubbles.ts +554 -0
  126. package/src/multiValue/plugins/XAxis.ts +108 -0
  127. package/src/multiValue/plugins/XYAux.ts +683 -0
  128. package/src/multiValue/plugins/XYAxes.ts +195 -0
  129. package/src/multiValue/plugins/XYAxes_legacy.ts +684 -0
  130. package/src/multiValue/plugins/XZoom.ts +300 -0
  131. package/src/noneData/defaults.ts +102 -102
  132. package/src/noneData/index.ts +3 -3
  133. package/src/noneData/plugins/Container.ts +28 -28
  134. package/src/noneData/plugins/Tooltip.ts +374 -374
  135. package/src/relationship/defaults.ts +222 -0
  136. package/src/relationship/index.ts +5 -0
  137. package/src/relationship/plugins/ForceDirected.ts +1174 -0
  138. package/src/relationship/plugins/ForceDirectedBubbles.ts +1412 -0
  139. package/src/relationship/plugins/RelationshipLegend.ts +100 -0
  140. package/src/relationship/plugins/RelationshipTooltip.ts +66 -0
  141. package/src/relationship/relationshipObservables.ts +50 -0
  142. package/src/series/defaults.ts +221 -206
  143. package/src/series/index.ts +9 -9
  144. package/src/series/plugins/Bubbles.ts +636 -603
  145. package/src/series/plugins/Pie.ts +623 -623
  146. package/src/series/plugins/PieEventTexts.ts +284 -283
  147. package/src/series/plugins/PieLabels.ts +640 -640
  148. package/src/series/plugins/Rose.ts +516 -516
  149. package/src/series/plugins/RoseLabels.ts +600 -600
  150. package/src/series/plugins/SeriesLegend.ts +107 -107
  151. package/src/series/plugins/SeriesTooltip.ts +66 -66
  152. package/src/series/seriesObservables.ts +145 -145
  153. package/src/series/seriesUtils.ts +51 -51
  154. package/src/tree/defaults.ts +102 -78
  155. package/src/tree/index.ts +4 -4
  156. package/src/tree/plugins/TreeLegend.ts +100 -107
  157. package/src/tree/plugins/TreeMap.ts +341 -333
  158. package/src/tree/plugins/TreeTooltip.ts +66 -66
  159. package/src/utils/commonUtils.ts +31 -22
  160. package/src/utils/d3Graphics.ts +176 -174
  161. package/src/utils/d3Utils.ts +92 -73
  162. package/src/utils/observables.ts +14 -14
  163. package/src/utils/orbchartsUtils.ts +130 -100
  164. package/tsconfig.base.json +13 -13
  165. package/tsconfig.json +2 -2
  166. package/vite.config.js +22 -22
  167. package/dist/src/grid/plugins/BarStack.d.ts +0 -1
  168. package/dist/src/grid/plugins/GridZoom.d.ts +0 -1
  169. package/dist/src/grid/plugins/ValueStackAxis.d.ts +0 -1
  170. package/dist/src/multiGrid/plugins/MultiBarStack.d.ts +0 -1
  171. package/dist/src/multiGrid/plugins/MultiValueStackAxis.d.ts +0 -1
  172. package/dist/src/multiGrid/plugins/OverlappingValueStackAxes.d.ts +0 -1
  173. package/src/grid/plugins/RankingAxis.ts +0 -0
  174. package/src/multiValue/plugins/ScatterAxes.ts +0 -0
  175. package/src/relationship/plugins/Relationship.ts +0 -0
  176. /package/dist/src/{base/BaseGroupArea.d.ts → multiValue/plugins/OrdinalBubbles.d.ts} +0 -0
  177. /package/dist/src/{grid/plugins/Ranking.d.ts → multiValue/plugins/OrdinalXAxis.d.ts} +0 -0
  178. /package/dist/src/{grid/plugins/RankingAxis.d.ts → multiValue/plugins/RacingCounterAxis.d.ts} +0 -0
  179. /package/dist/src/multiValue/plugins/{ScatterAxes.d.ts → RankingAxis_legacy.d.ts} +0 -0
  180. /package/{dist/src/relationship/plugins/Relationship.d.ts → src/multiValue/plugins/OrdinalBubbles.ts} +0 -0
  181. /package/src/{base/BaseGroupArea.ts → multiValue/plugins/OrdinalXAxis.ts} +0 -0
  182. /package/src/{grid/plugins/Ranking.ts → multiValue/plugins/RacingCounterAxis.ts} +0 -0
@@ -0,0 +1,100 @@
1
+ import * as d3 from 'd3'
2
+ import {
3
+ combineLatest,
4
+ map,
5
+ switchMap,
6
+ takeUntil,
7
+ Observable,
8
+ Subject } from 'rxjs'
9
+ import type { DefinePluginConfig } from '../../../lib/core-types'
10
+ import {
11
+ defineRelationshipPlugin } from '../../../lib/core'
12
+ import { DEFAULT_RELATIONSHIP_LEGEND_PARAMS } from '../defaults'
13
+ import { createBaseLegend } from '../../base/BaseLegend'
14
+ import { LAYER_INDEX_OF_INFO } from '../../const'
15
+
16
+ const pluginName = 'RelationshipLegend'
17
+
18
+ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_RELATIONSHIP_LEGEND_PARAMS> = {
19
+ name: pluginName,
20
+ defaultParams: DEFAULT_RELATIONSHIP_LEGEND_PARAMS,
21
+ layerIndex: LAYER_INDEX_OF_INFO,
22
+ validator: (params, { validateColumns }) => {
23
+ const result = validateColumns(params, {
24
+ placement: {
25
+ toBe: '"top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end" | "right" | "right-start" | "right-end"',
26
+ test: (value) => {
27
+ return [
28
+ 'top', 'top-start', 'top-end',
29
+ 'bottom', 'bottom-start', 'bottom-end',
30
+ 'left', 'left-start', 'left-end',
31
+ 'right', 'right-start', 'right-end'
32
+ ].includes(value)
33
+ }
34
+ },
35
+ padding: {
36
+ toBeTypes: ['number']
37
+ },
38
+ backgroundFill: {
39
+ toBeOption: 'ColorType',
40
+ },
41
+ backgroundStroke: {
42
+ toBeOption: 'ColorType',
43
+ },
44
+ gap: {
45
+ toBeTypes: ['number']
46
+ },
47
+ listRectWidth: {
48
+ toBeTypes: ['number']
49
+ },
50
+ listRectHeight: {
51
+ toBeTypes: ['number']
52
+ },
53
+ listRectRadius: {
54
+ toBeTypes: ['number']
55
+ },
56
+ textColorType: {
57
+ toBeOption: 'ColorType',
58
+ }
59
+ })
60
+ return result
61
+ }
62
+ }
63
+
64
+ export const RelationshipLegend = defineRelationshipPlugin(pluginConfig)(({ selection, rootSelection, observer, subject }) => {
65
+
66
+ const destroy$ = new Subject()
67
+
68
+ // 全部列點矩型使用相同樣式參數
69
+ const fullParams$ = observer.fullParams$.pipe(
70
+ takeUntil(destroy$),
71
+ map(d => {
72
+ const labelList = [
73
+ {
74
+ listRectWidth: d.listRectWidth,
75
+ listRectHeight: d.listRectHeight,
76
+ listRectRadius: d.listRectRadius,
77
+ }
78
+ ]
79
+ return {
80
+ ...d,
81
+ labelList
82
+ }
83
+ })
84
+ )
85
+
86
+ const unsubscribeBaseLegend = createBaseLegend(pluginName, {
87
+ rootSelection,
88
+ legendLabels$: observer.categoryLabels$,
89
+ fullParams$,
90
+ layout$: observer.layout$,
91
+ fullChartParams$: observer.fullChartParams$,
92
+ textSizePx$: observer.textSizePx$
93
+ })
94
+
95
+ return () => {
96
+ destroy$.next(undefined)
97
+ unsubscribeBaseLegend()
98
+ }
99
+ })
100
+
@@ -0,0 +1,66 @@
1
+ import {
2
+ Subject,
3
+ } from 'rxjs'
4
+ import type { DefinePluginConfig } from '../../../lib/core-types'
5
+ import {
6
+ defineRelationshipPlugin } from '../../../lib/core'
7
+ import { DEFAULT_RELATIONSHIP_TOOLTIP_PARAMS } from '../defaults'
8
+ import { LAYER_INDEX_OF_TOOLTIP } from '../../const'
9
+ import { createBaseTooltip } from '../../base/BaseTooltip'
10
+
11
+ const pluginName = 'RelationshipTooltip'
12
+
13
+ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_RELATIONSHIP_TOOLTIP_PARAMS> = {
14
+ name: pluginName,
15
+ defaultParams: DEFAULT_RELATIONSHIP_TOOLTIP_PARAMS,
16
+ layerIndex: LAYER_INDEX_OF_TOOLTIP,
17
+ validator: (params, { validateColumns }) => {
18
+ const result = validateColumns(params, {
19
+ backgroundColorType: {
20
+ toBeOption: 'ColorType',
21
+ },
22
+ backgroundOpacity: {
23
+ toBeTypes: ['number']
24
+ },
25
+ strokeColorType: {
26
+ toBeOption: 'ColorType',
27
+ },
28
+ offset: {
29
+ toBe: '[number, number]',
30
+ test: (value: any) => {
31
+ return Array.isArray(value)
32
+ && value.length === 2
33
+ && typeof value[0] === 'number'
34
+ && typeof value[1] === 'number'
35
+ }
36
+ },
37
+ padding: {
38
+ toBeTypes: ['number']
39
+ },
40
+ textColorType: {
41
+ toBeOption: 'ColorType',
42
+ },
43
+ renderFn: {
44
+ toBeTypes: ['Function']
45
+ },
46
+ })
47
+ return result
48
+ }
49
+ }
50
+
51
+ export const RelationshipTooltip = defineRelationshipPlugin(pluginConfig)(({ selection, rootSelection, name, subject, observer }) => {
52
+ const destroy$ = new Subject()
53
+
54
+ const unsubscribeTooltip = createBaseTooltip(pluginName, {
55
+ rootSelection,
56
+ fullParams$: observer.fullParams$,
57
+ fullChartParams$: observer.fullChartParams$,
58
+ layout$: observer.layout$,
59
+ event$: subject.event$,
60
+ })
61
+
62
+ return () => {
63
+ destroy$.next(undefined)
64
+ unsubscribeTooltip()
65
+ }
66
+ })
@@ -0,0 +1,50 @@
1
+ import * as d3 from 'd3'
2
+ import {
3
+ Observable,
4
+ Subject,
5
+ of,
6
+ takeUntil,
7
+ filter,
8
+ first,
9
+ map,
10
+ switchMap,
11
+ combineLatest,
12
+ merge,
13
+ shareReplay,
14
+ distinctUntilChanged
15
+ } from 'rxjs'
16
+ import type {
17
+ ContainerPosition } from '../../lib/core-types'
18
+ import { getClassName, getUniID } from '../utils/orbchartsUtils'
19
+
20
+ // function createRelationshipSelection ({ selection, pluginName, separateSeries$, seriesLabels$ }: {
21
+ // selection: d3.Selection<any, unknown, any, unknown>
22
+ // pluginName: string
23
+ // separateSeries$: Observable<boolean>
24
+ // seriesLabels$: Observable<string[]>
25
+ // }) {
26
+ // const seriesClassName = getClassName(pluginName, 'series')
27
+
28
+ // return combineLatest({
29
+ // seriesLabels: seriesLabels$,
30
+ // separateSeries: separateSeries$
31
+ // }).pipe(
32
+ // switchMap(async d => d),
33
+ // map((data, i) => {
34
+ // const selectionData = data.separateSeries ? data.seriesLabels : [data.seriesLabels.join('')]
35
+ // return selection
36
+ // .selectAll<SVGGElement, string>(`g.${seriesClassName}`)
37
+ // .data(selectionData, d => d)
38
+ // .join(
39
+ // enter => {
40
+ // return enter
41
+ // .append('g')
42
+ // .classed(seriesClassName, true)
43
+ // },
44
+ // update => update,
45
+ // exit => exit.remove()
46
+ // )
47
+ // }),
48
+ // shareReplay(1)
49
+ // )
50
+ // }
@@ -1,207 +1,222 @@
1
- import type { ComputedDatumSeries, EventSeries, EventName, ColorType } from '../../lib/core-types'
2
- import type {
3
- BubblesParams,
4
- PieParams,
5
- PieEventTextsParams,
6
- PieLabelsParams,
7
- RoseParams,
8
- RoseLabelsParams,
9
- SeriesLegendParams,
10
- SeriesTooltipParams
11
- } from '../../lib/plugins-basic-types'
12
-
13
-
14
- export const DEFAULT_BUBBLES_PARAMS: BubblesParams = {
15
- force: {
16
- strength: 0.08, // 泡泡引力
17
- velocityDecay: 0.3, // 衰減數
18
- collisionSpacing: 2 // 泡泡間距
19
- },
20
- bubbleText: {
21
- fillRate: 0.6,
22
- lineHeight: 12,
23
- lineLengthMin: 4
24
- },
25
- // highlightRIncrease: 0,
26
- arcScaleType: 'area'
27
- }
28
-
29
- export const DEFAULT_PIE_PARAMS: PieParams = {
30
- // padding: {
31
- // top: 50,
32
- // right: 70,
33
- // bottom: 50,
34
- // left: 70
35
- // },
36
- outerRadius: 0.85,
37
- innerRadius: 0,
38
- outerRadiusWhileHighlight: 0.9,
39
- // label?: LabelStyle
40
- // enterDuration: 800,
41
- startAngle: 0,
42
- endAngle: Math.PI * 2,
43
- padAngle: 0,
44
- strokeColorType: 'background',
45
- strokeWidth: 1,
46
- // padRadius: 100,
47
- cornerRadius: 0,
48
- // highlightTarget: 'datum',
49
- // highlightId: null,
50
- // highlightLabel: null,
51
- }
52
-
53
- export const DEFAULT_PIE_EVENT_TEXTS_PARAMS: PieEventTextsParams = {
54
- eventFn: (eventData: EventSeries, eventName: EventName, t: number) => {
55
- if (eventName === 'mouseover' || eventName === 'mousemove') {
56
- return [String(eventData.datum!.value)]
57
- }
58
- return [
59
- String(
60
- Math.round(
61
- eventData.data.reduce((acc, seriesData) => {
62
- return acc + seriesData.reduce((_acc, data) => {
63
- return _acc + (data.value ?? 0)
64
- }, 0)
65
- }, 0) * t
66
- )
67
- )
68
- ]
69
- },
70
- textAttrs: [
71
- {
72
- "transform": "translate(0, 0)"
73
- }
74
- ],
75
- textStyles: [
76
- {
77
- "font-weight": "bold",
78
- "text-anchor": "middle",
79
- "pointer-events": "none",
80
- "dominant-baseline": "middle",
81
- "font-size": 64,
82
- "fill": "#000"
83
- }
84
- ]
85
- }
86
- DEFAULT_PIE_EVENT_TEXTS_PARAMS.eventFn.toString = () => `(eventData: EventSeries, eventName: EventName, t: number) => {
87
- if (eventName === 'mouseover' || eventName === 'mousemove') {
88
- return [String(eventData.datum!.value)]
89
- }
90
- return [
91
- String(
92
- Math.round(
93
- eventData.data.reduce((acc, seriesData) => {
94
- return acc + seriesData.reduce((_acc, data) => {
95
- return _acc + (data.value ?? 0)
96
- }, 0)
97
- }, 0) * t
98
- )
99
- )
100
- ]
101
- }`
102
-
103
- export const DEFAULT_PIE_LABELS_PARAMS: PieLabelsParams = {
104
- // solidColor: undefined,
105
- // colors: DEFAULT_COLORS,
106
- outerRadius: 0.85,
107
- outerRadiusWhileHighlight: 0.9,
108
- // innerRadius: 0,
109
- // enterDuration: 800,
110
- startAngle: 0,
111
- endAngle: Math.PI * 2,
112
- labelCentroid: 2.1,
113
- // fontSize: 12,
114
- labelColorType: 'primary',
115
- labelFn: d => String(d.label),
116
- }
117
- DEFAULT_PIE_LABELS_PARAMS.labelFn.toString = () => `d => String(d.label)`
118
-
119
- export const DEFAULT_ROSE_PARAMS: RoseParams = {
120
- outerRadius: 0.85,
121
- padAngle: 0,
122
- strokeColorType: 'background',
123
- strokeWidth: 0,
124
- cornerRadius: 0,
125
- arcScaleType: 'area',
126
- angleIncreaseWhileHighlight: 0.05
127
- }
128
-
129
- export const DEFAULT_ROSE_LABELS_PARAMS: RoseLabelsParams = {
130
- outerRadius: 0.85,
131
- labelCentroid: 2.1,
132
- labelFn: d => String(d.label),
133
- labelColorType: 'primary',
134
- arcScaleType: 'area'
135
- }
136
- DEFAULT_ROSE_LABELS_PARAMS.labelFn.toString = () => `d => String(d.label)`
137
-
138
- export const DEFAULT_SERIES_LEGEND_PARAMS: SeriesLegendParams = {
139
- // position: 'right',
140
- // justify: 'end',
141
- placement: 'right-end',
142
- padding: 28,
143
- // offset: [0, 0],
144
- backgroundFill: 'none',
145
- backgroundStroke: 'none',
146
- gap: 10,
147
- listRectWidth: 14,
148
- listRectHeight: 14,
149
- listRectRadius: 0,
150
- // highlightEvent: false
151
- textColorType: 'primary'
152
- }
153
-
154
- export const DEFAULT_SERIES_TOOLTIP_PARAMS: SeriesTooltipParams = {
155
- backgroundColorType: 'background',
156
- strokeColorType: 'primary',
157
- backgroundOpacity: 0.8,
158
- textColorType: 'primary',
159
- offset: [20, 5],
160
- padding: 10,
161
- renderFn: (eventData, { styles, utils }) => {
162
- const hasSeriesLabel = eventData.seriesLabel.slice(0, 7) === 'series_' ? false : true
163
- const hasDatumLabel = eventData.datum.label.slice(0, 7) === 'series_' ? false : true
164
- const bulletWidth = styles.textSizePx * 0.7
165
- const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
166
- const seriesSvg = hasSeriesLabel
167
- ? `<rect width="${bulletWidth}" height="${bulletWidth}" x="${offset}" y="${offset - 1}" rx="${bulletWidth / 2}" fill="${eventData.datum.color}"></rect>
168
- <text x="${styles.textSizePx * 1.5}" font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
169
- <tspan>${eventData.seriesLabel}</tspan>
170
- </text>`
171
- : ''
172
- const datumLabelSvg = hasDatumLabel
173
- ? `<tspan>${eventData.datum.label}</tspan> `
174
- : ''
175
- const datumSvg = `<text font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
176
- ${datumLabelSvg}<tspan font-weight="bold">${eventData.datum.value}</tspan>
177
- </text>`
178
-
179
- return `${seriesSvg}
180
- <g ${hasSeriesLabel ? `transform="translate(0, ${styles.textSizePx * 2})"` : ''}>
181
- ${datumSvg}
182
- </g>`
183
- },
184
- }
185
- DEFAULT_SERIES_TOOLTIP_PARAMS.renderFn.toString = () => `(eventData, { styles, utils }) => {
186
- const hasSeriesLabel = eventData.seriesLabel.slice(0, 7) === 'series_' ? false : true
187
- const hasDatumLabel = eventData.datum.label.slice(0, 7) === 'series_' ? false : true
188
- const bulletWidth = styles.textSizePx * 0.7
189
- const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
190
- const seriesSvg = hasSeriesLabel
191
- ? \`<rect width="\${bulletWidth}" height="\${bulletWidth}" x="\${offset}" y="\${offset - 1}" rx="\${bulletWidth / 2}" fill="\${eventData.datum.color}"></rect>
192
- <text x="\${styles.textSizePx * 1.5}" font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
193
- <tspan>\${eventData.seriesLabel}</tspan>
194
- </text>\`
195
- : ''
196
- const datumLabelSvg = hasDatumLabel
197
- ? \`<tspan>\${eventData.datum.label}</tspan> \`
198
- : ''
199
- const datumSvg = \`<text font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
200
- \${datumLabelSvg}<tspan font-weight="bold">\${eventData.datum.value}</tspan>
201
- </text>\`
202
-
203
- return \`\${seriesSvg}
204
- <g \${hasSeriesLabel ? \`transform="translate(0, \${styles.textSizePx * 2})"\` : ''}>
205
- \${datumSvg}
206
- </g>\`
1
+ import type { ComputedDatumSeries, EventSeries, EventName, ColorType } from '../../lib/core-types'
2
+ import type {
3
+ BubblesParams,
4
+ PieParams,
5
+ PieEventTextsParams,
6
+ PieLabelsParams,
7
+ RoseParams,
8
+ RoseLabelsParams,
9
+ SeriesLegendParams,
10
+ SeriesTooltipParams
11
+ } from '../../lib/plugins-basic-types'
12
+
13
+
14
+ export const DEFAULT_BUBBLES_PARAMS: BubblesParams = {
15
+ force: {
16
+ strength: 0.08, // 泡泡引力
17
+ velocityDecay: 0.3, // 衰減數
18
+ collisionSpacing: 2 // 泡泡間距
19
+ },
20
+ bubbleLabel: {
21
+ colorType: 'labelContrast',
22
+ fillRate: 0.6,
23
+ lineHeight: 1,
24
+ maxLineLength: 6,
25
+ wordBreakAll: true,
26
+ },
27
+ // highlightRIncrease: 0,
28
+ arcScaleType: 'area'
29
+ }
30
+
31
+ export const DEFAULT_PIE_PARAMS: PieParams = {
32
+ outerRadius: 0.85,
33
+ innerRadius: 0,
34
+ outerRadiusWhileHighlight: 0.9,
35
+ startAngle: 0,
36
+ endAngle: Math.PI * 2,
37
+ padAngle: 0,
38
+ strokeColorType: 'background',
39
+ strokeWidth: 1,
40
+ // padRadius: 100,
41
+ cornerRadius: 0,
42
+ }
43
+
44
+ export const DEFAULT_PIE_EVENT_TEXTS_PARAMS: PieEventTextsParams = {
45
+ renderFn: (eventData: EventSeries) => {
46
+ if (eventData.eventName === 'mouseover' || eventData.eventName === 'mousemove') {
47
+ return [String(eventData.datum!.value)]
48
+ }
49
+ return [
50
+ String(
51
+ Math.round(
52
+ eventData.data.reduce((acc, seriesData) => {
53
+ return acc + seriesData.reduce((_acc, data) => {
54
+ return _acc + (data.value ?? 0)
55
+ }, 0)
56
+ }, 0) * (eventData.tween ?? 1)
57
+ )
58
+ )
59
+ ]
60
+ },
61
+ textAttrs: [
62
+ {
63
+ "transform": "translate(0, 0)"
64
+ }
65
+ ],
66
+ textStyles: [
67
+ {
68
+ "font-weight": "bold",
69
+ "text-anchor": "middle",
70
+ "pointer-events": "none",
71
+ "dominant-baseline": "middle",
72
+ "font-size": 64,
73
+ "fill": "#000"
74
+ }
75
+ ]
76
+ }
77
+ DEFAULT_PIE_EVENT_TEXTS_PARAMS.renderFn.toString = () => `(eventData) => {
78
+ if (eventData.eventName === 'mouseover' || eventData.eventName === 'mousemove') {
79
+ return [String(eventData.datum.value)]
80
+ }
81
+ return [
82
+ String(
83
+ Math.round(
84
+ eventData.data.reduce((acc, seriesData) => {
85
+ return acc + seriesData.reduce((_acc, data) => {
86
+ return _acc + (data.value ?? 0)
87
+ }, 0)
88
+ }, 0) * (eventData.tween ?? 1)
89
+ )
90
+ )
91
+ ]
92
+ }`
93
+
94
+ export const DEFAULT_PIE_LABELS_PARAMS: PieLabelsParams = {
95
+ // solidColor: undefined,
96
+ // colors: DEFAULT_COLORS,
97
+ outerRadius: 0.85,
98
+ outerRadiusWhileHighlight: 0.9,
99
+ // innerRadius: 0,
100
+ // enterDuration: 800,
101
+ startAngle: 0,
102
+ endAngle: Math.PI * 2,
103
+ labelCentroid: 2.1,
104
+ // fontSize: 12,
105
+ labelColorType: 'primary',
106
+ labelFn: d => String(d.label),
107
+ }
108
+ DEFAULT_PIE_LABELS_PARAMS.labelFn.toString = () => `d => String(d.label)`
109
+
110
+ export const DEFAULT_ROSE_PARAMS: RoseParams = {
111
+ outerRadius: 0.95,
112
+ padAngle: 0,
113
+ strokeColorType: 'background',
114
+ strokeWidth: 0.5,
115
+ cornerRadius: 0,
116
+ arcScaleType: 'area',
117
+ angleIncreaseWhileHighlight: 0.05
118
+ }
119
+
120
+ export const DEFAULT_ROSE_LABELS_PARAMS: RoseLabelsParams = {
121
+ outerRadius: 0.95,
122
+ labelCentroid: 2.1,
123
+ labelFn: d => String(d.label),
124
+ labelColorType: 'primary',
125
+ arcScaleType: 'area'
126
+ }
127
+ DEFAULT_ROSE_LABELS_PARAMS.labelFn.toString = () => `d => String(d.label)`
128
+
129
+ export const DEFAULT_SERIES_LEGEND_PARAMS: SeriesLegendParams = {
130
+ // position: 'right',
131
+ // justify: 'end',
132
+ placement: 'right-end',
133
+ padding: 28,
134
+ // offset: [0, 0],
135
+ backgroundFill: 'none',
136
+ backgroundStroke: 'none',
137
+ gap: 10,
138
+ listRectWidth: 14,
139
+ listRectHeight: 14,
140
+ listRectRadius: 0,
141
+ // highlightEvent: false
142
+ textColorType: 'primary'
143
+ }
144
+
145
+ export const DEFAULT_SERIES_TOOLTIP_PARAMS: SeriesTooltipParams = {
146
+ backgroundColorType: 'background',
147
+ strokeColorType: 'primary',
148
+ backgroundOpacity: 0.8,
149
+ textColorType: 'primary',
150
+ offset: [20, 5],
151
+ padding: 10,
152
+ renderFn: (eventData, { styles, utils }) => {
153
+ const hasSeriesLabel = eventData.seriesLabel.slice(0, 7) === 'series_' ? false : true
154
+ const hasDatumLabel = eventData.datum.label.slice(0, 7) === 'series_' ? false : true
155
+ const valueText = utils.toCurrency(eventData.datum.value)
156
+ const bulletWidth = styles.textSizePx * 0.7
157
+ const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
158
+ const seriesSvg = hasSeriesLabel
159
+ ? `<rect width="${bulletWidth}" height="${bulletWidth}" x="${offset}" y="${offset - 1}" rx="${bulletWidth / 2}" fill="${eventData.datum.color}"></rect>
160
+ <text x="${styles.textSizePx * 1.5}" font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
161
+ <tspan>${eventData.seriesLabel}</tspan>
162
+ </text>`
163
+ : ''
164
+ const datumLabelSvg = hasDatumLabel
165
+ ? `<tspan>${eventData.datum.label}</tspan> `
166
+ : ''
167
+ const seriesLabelTextWidth = hasSeriesLabel
168
+ ? utils.measureTextWidth(`${eventData.seriesLabel}${valueText}`, styles.textSizePx) + styles.textSizePx * 1.5
169
+ : 0
170
+ const datumLabelTextWidth = hasDatumLabel
171
+ ? utils.measureTextWidth(`${eventData.datum.label}${valueText}`, styles.textSizePx)
172
+ : 0
173
+ const maxTextWidth = Math.max(seriesLabelTextWidth, datumLabelTextWidth)
174
+ const lineEndX = hasDatumLabel
175
+ ? maxTextWidth + styles.textSizePx * 1.5
176
+ : 0
177
+ const valueTextAnchor = hasDatumLabel ? 'end' : 'start'
178
+ const datumSvg = `<text font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
179
+ ${datumLabelSvg}<tspan font-weight="bold" text-anchor="${valueTextAnchor}" x="${lineEndX}">${valueText}</tspan>
180
+ </text>`
181
+
182
+ return `${seriesSvg}
183
+ <g ${hasSeriesLabel ? `transform="translate(0, ${styles.textSizePx * 2})"` : ''}>
184
+ ${datumSvg}
185
+ </g>`
186
+ },
187
+ }
188
+ DEFAULT_SERIES_TOOLTIP_PARAMS.renderFn.toString = () => `(eventData, { styles, utils }) => {
189
+ const hasSeriesLabel = eventData.seriesLabel.slice(0, 7) === 'series_' ? false : true
190
+ const hasDatumLabel = eventData.datum.label.slice(0, 7) === 'series_' ? false : true
191
+ const valueText = utils.toCurrency(eventData.datum.value)
192
+ const bulletWidth = styles.textSizePx * 0.7
193
+ const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
194
+ const seriesSvg = hasSeriesLabel
195
+ ? \`<rect width="\${bulletWidth}" height="\${bulletWidth}" x="\${offset}" y="\${offset - 1}" rx="\${bulletWidth / 2}" fill="\${eventData.datum.color}"></rect>
196
+ <text x="\${styles.textSizePx * 1.5}" font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
197
+ <tspan>\${eventData.seriesLabel}</tspan>
198
+ </text>\`
199
+ : ''
200
+ const datumLabelSvg = hasDatumLabel
201
+ ? \`<tspan>\${eventData.datum.label}</tspan> \`
202
+ : ''
203
+ const seriesLabelTextWidth = hasSeriesLabel
204
+ ? utils.measureTextWidth(\`\${eventData.seriesLabel}\${valueText}\`, styles.textSizePx) + styles.textSizePx * 1.5
205
+ : 0
206
+ const datumLabelTextWidth = hasDatumLabel
207
+ ? utils.measureTextWidth(\`\${eventData.datum.label}\${valueText}\`, styles.textSizePx)
208
+ : 0
209
+ const maxTextWidth = Math.max(seriesLabelTextWidth, datumLabelTextWidth)
210
+ const lineEndX = hasDatumLabel
211
+ ? maxTextWidth + styles.textSizePx * 1.5
212
+ : 0
213
+ const valueTextAnchor = hasDatumLabel ? 'end' : 'start'
214
+ const datumSvg = \`<text font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
215
+ \${datumLabelSvg}<tspan font-weight="bold" text-anchor="\${valueTextAnchor}" x="\${lineEndX}">\${valueText}</tspan>
216
+ </text>\`
217
+
218
+ return \`\${seriesSvg}
219
+ <g \${hasSeriesLabel ? \`transform="translate(0, \${styles.textSizePx * 2})"\` : ''}>
220
+ \${datumSvg}
221
+ </g>\`
207
222
  }`