@orbcharts/plugins-basic 3.0.0-beta.16 → 3.0.0-beta.18

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 (112) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-plugins-basic.es.js +11037 -10875
  3. package/dist/orbcharts-plugins-basic.umd.js +208 -148
  4. package/dist/src/utils/commonUtils.d.ts +1 -0
  5. package/dist/src/utils/d3Graphics.d.ts +2 -1
  6. package/lib/core-types.ts +7 -7
  7. package/lib/core.ts +6 -6
  8. package/lib/plugins-basic-types.ts +6 -6
  9. package/package.json +44 -44
  10. package/src/base/BaseBars.ts +765 -765
  11. package/src/base/BaseBarsTriangle.ts +676 -676
  12. package/src/base/BaseDots.ts +464 -464
  13. package/src/base/BaseGroupAxis.ts +691 -681
  14. package/src/base/BaseLegend.ts +684 -684
  15. package/src/base/BaseLineAreas.ts +629 -629
  16. package/src/base/BaseLines.ts +706 -706
  17. package/src/base/BaseRacingBars.ts +551 -551
  18. package/src/base/BaseRacingLabels.ts +396 -392
  19. package/src/base/BaseRacingValueLabels.ts +403 -403
  20. package/src/base/BaseStackedBars.ts +782 -782
  21. package/src/base/BaseTooltip.ts +386 -385
  22. package/src/base/BaseValueAxis.ts +600 -600
  23. package/src/base/BaseXAxis.ts +427 -427
  24. package/src/base/BaseYAxis.ts +389 -389
  25. package/src/base/types.ts +2 -2
  26. package/src/const.ts +30 -30
  27. package/src/grid/defaults.ts +213 -198
  28. package/src/grid/gridObservables.ts +612 -612
  29. package/src/grid/index.ts +16 -16
  30. package/src/grid/plugins/Bars.ts +69 -69
  31. package/src/grid/plugins/BarsPN.ts +66 -66
  32. package/src/grid/plugins/BarsTriangle.ts +73 -73
  33. package/src/grid/plugins/Dots.ts +68 -68
  34. package/src/grid/plugins/GridLegend.ts +107 -107
  35. package/src/grid/plugins/GridTooltip.ts +66 -66
  36. package/src/grid/plugins/GroupAux.ts +1120 -1103
  37. package/src/grid/plugins/GroupAxis.ts +73 -73
  38. package/src/grid/plugins/GroupZoom.ts +218 -218
  39. package/src/grid/plugins/LineAreas.ts +65 -65
  40. package/src/grid/plugins/Lines.ts +59 -59
  41. package/src/grid/plugins/StackedBars.ts +64 -64
  42. package/src/grid/plugins/StackedValueAxis.ts +96 -96
  43. package/src/grid/plugins/ValueAxis.ts +94 -94
  44. package/src/index.ts +6 -6
  45. package/src/multiGrid/defaults.ts +244 -228
  46. package/src/multiGrid/index.ts +14 -14
  47. package/src/multiGrid/multiGridObservables.ts +50 -50
  48. package/src/multiGrid/plugins/MultiBars.ts +108 -108
  49. package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
  50. package/src/multiGrid/plugins/MultiDots.ts +102 -102
  51. package/src/multiGrid/plugins/MultiGridLegend.ts +169 -169
  52. package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
  53. package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
  54. package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
  55. package/src/multiGrid/plugins/MultiLines.ts +101 -101
  56. package/src/multiGrid/plugins/MultiStackedBars.ts +106 -106
  57. package/src/multiGrid/plugins/MultiStackedValueAxis.ts +134 -134
  58. package/src/multiGrid/plugins/MultiValueAxis.ts +134 -134
  59. package/src/multiGrid/plugins/OverlappingStackedValueAxes.ts +300 -300
  60. package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -300
  61. package/src/multiValue/defaults.ts +388 -299
  62. package/src/multiValue/index.ts +12 -12
  63. package/src/multiValue/multiValueObservables.ts +666 -666
  64. package/src/multiValue/plugins/MultiValueLegend.ts +107 -107
  65. package/src/multiValue/plugins/MultiValueTooltip.ts +66 -66
  66. package/src/multiValue/plugins/RacingBars.ts +373 -362
  67. package/src/multiValue/plugins/RacingCounterTexts.ts +300 -300
  68. package/src/multiValue/plugins/RacingValueAxis.ts +114 -114
  69. package/src/multiValue/plugins/RankingAxis_legacy.ts +109 -109
  70. package/src/multiValue/plugins/Scatter.ts +426 -426
  71. package/src/multiValue/plugins/ScatterBubbles.ts +554 -554
  72. package/src/multiValue/plugins/XAxis.ts +107 -107
  73. package/src/multiValue/plugins/XYAux.ts +682 -681
  74. package/src/multiValue/plugins/XYAxes.ts +194 -194
  75. package/src/multiValue/plugins/XYAxes_legacy.ts +683 -683
  76. package/src/multiValue/plugins/XZoom.ts +299 -299
  77. package/src/noneData/defaults.ts +102 -102
  78. package/src/noneData/index.ts +3 -3
  79. package/src/noneData/plugins/Container.ts +27 -27
  80. package/src/noneData/plugins/Tooltip.ts +373 -373
  81. package/src/relationship/defaults.ts +221 -218
  82. package/src/relationship/index.ts +5 -5
  83. package/src/relationship/plugins/ForceDirected.ts +1173 -1168
  84. package/src/relationship/plugins/ForceDirectedBubbles.ts +1411 -1403
  85. package/src/relationship/plugins/RelationshipLegend.ts +100 -100
  86. package/src/relationship/plugins/RelationshipTooltip.ts +66 -66
  87. package/src/relationship/relationshipObservables.ts +49 -49
  88. package/src/series/defaults.ts +221 -219
  89. package/src/series/index.ts +9 -9
  90. package/src/series/plugins/Bubbles.ts +636 -636
  91. package/src/series/plugins/Pie.ts +623 -623
  92. package/src/series/plugins/PieEventTexts.ts +284 -284
  93. package/src/series/plugins/PieLabels.ts +640 -640
  94. package/src/series/plugins/Rose.ts +516 -516
  95. package/src/series/plugins/RoseLabels.ts +600 -600
  96. package/src/series/plugins/SeriesLegend.ts +107 -107
  97. package/src/series/plugins/SeriesTooltip.ts +66 -66
  98. package/src/series/seriesObservables.ts +145 -145
  99. package/src/series/seriesUtils.ts +51 -51
  100. package/src/tree/defaults.ts +102 -100
  101. package/src/tree/index.ts +4 -4
  102. package/src/tree/plugins/TreeLegend.ts +100 -100
  103. package/src/tree/plugins/TreeMap.ts +341 -341
  104. package/src/tree/plugins/TreeTooltip.ts +66 -66
  105. package/src/utils/commonUtils.ts +31 -22
  106. package/src/utils/d3Graphics.ts +176 -174
  107. package/src/utils/d3Utils.ts +92 -92
  108. package/src/utils/observables.ts +14 -14
  109. package/src/utils/orbchartsUtils.ts +129 -129
  110. package/tsconfig.base.json +13 -13
  111. package/tsconfig.json +2 -2
  112. package/vite.config.js +22 -22
@@ -1,137 +1,137 @@
1
- import * as d3 from 'd3'
2
- import {
3
- Subject,
4
- map,
5
- distinctUntilChanged,
6
- shareReplay,
7
- takeUntil
8
- } from 'rxjs'
9
- import type { DefinePluginConfig } from '../../../lib/core-types'
10
- import {
11
- defineMultiGridPlugin } from '../../../lib/core'
12
- import { DEFAULT_MULTI_GROUP_AXIS_PARAMS } from '../defaults'
13
- import { createBaseGroupAxis } from '../../base/BaseGroupAxis'
14
- import { multiGridPluginDetailObservables } from '../multiGridObservables'
15
- import { getClassName, getUniID } from '../../utils/orbchartsUtils'
16
- import { LAYER_INDEX_OF_AXIS } from '../../const'
17
-
18
- const pluginName = 'MultiGroupAxis'
19
-
20
- const gridClassName = getClassName(pluginName, 'grid')
21
-
22
- const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_MULTI_GROUP_AXIS_PARAMS> = {
23
- name: pluginName,
24
- defaultParams: DEFAULT_MULTI_GROUP_AXIS_PARAMS,
25
- layerIndex: LAYER_INDEX_OF_AXIS,
26
- validator: (params, { validateColumns }) => {
27
- const result = validateColumns(params, {
28
- gridIndexes: {
29
- toBe: 'number[] | "all"',
30
- test: (value: any) => {
31
- return value === 'all' || (Array.isArray(value) && value.every((v: any) => typeof v === 'number'))
32
- }
33
- },
34
- labelOffset: {
35
- toBe: '[number, number]',
36
- test: (value: any) => {
37
- return Array.isArray(value)
38
- && value.length === 2
39
- && typeof value[0] === 'number'
40
- && typeof value[1] === 'number'
41
- }
42
- },
43
- labelColorType: {
44
- toBeOption: 'ColorType',
45
- },
46
- axisLineVisible: {
47
- toBeTypes: ['boolean']
48
- },
49
- axisLineColorType: {
50
- toBeOption: 'ColorType',
51
- },
52
- ticks: {
53
- toBe: 'number | null | "all"',
54
- test: (value: any) => {
55
- return value === null || value === 'all' || typeof value === 'number'
56
- }
57
- },
58
- tickFormat: {
59
- toBeTypes: ['string', 'Function']
60
- },
61
- tickLineVisible: {
62
- toBeTypes: ['boolean']
63
- },
64
- tickPadding: {
65
- toBeTypes: ['number']
66
- },
67
- tickFullLine: {
68
- toBeTypes: ['boolean']
69
- },
70
- tickFullLineDasharray: {
71
- toBeTypes: ['string']
72
- },
73
- tickColorType: {
74
- toBeOption: 'ColorType',
75
- },
76
- tickTextRotate: {
77
- toBeTypes: ['number']
78
- },
79
- tickTextColorType: {
80
- toBeOption: 'ColorType',
81
- }
82
- })
83
- return result
84
- }
85
- }
86
-
87
- export const MultiGroupAxis = defineMultiGridPlugin(pluginConfig)(({ selection, name, subject, observer }) => {
88
- const destroy$ = new Subject()
89
-
90
- const unsubscribeFnArr: (() => void)[] = []
91
-
92
- const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
93
-
94
- multiGridPluginDetail$
95
- .pipe(
96
- takeUntil(destroy$)
97
- )
98
- .subscribe(data => {
99
- // 每次重新計算時,清除之前的訂閱
100
- unsubscribeFnArr.forEach(fn => fn())
101
-
102
- selection.selectAll(`g.${gridClassName}`)
103
- .data(data)
104
- .join('g')
105
- .attr('class', gridClassName)
106
- .each((d, i, g) => {
107
-
108
- const gridSelection = d3.select(g[i])
109
-
110
- const isSeriesSeprate$ = d.dataFormatter$.pipe(
111
- takeUntil(destroy$),
112
- map(d => d.separateSeries),
113
- distinctUntilChanged(),
114
- shareReplay(1)
115
- )
116
-
117
- unsubscribeFnArr[i] = createBaseGroupAxis(pluginName, {
118
- selection: gridSelection,
119
- computedData$: d.computedData$,
120
- fullParams$: observer.fullParams$,
121
- fullDataFormatter$: d.dataFormatter$,
122
- fullChartParams$: observer.fullChartParams$,
123
- gridAxesTransform$: d.gridAxesTransform$,
124
- gridAxesReverseTransform$: d.gridAxesReverseTransform$,
125
- gridAxesSize$: d.gridAxesSize$,
126
- gridContainerPosition$: d.gridContainerPosition$,
127
- isSeriesSeprate$,
128
- textSizePx$: observer.textSizePx$,
129
- })
130
- })
131
- })
132
-
133
- return () => {
134
- destroy$.next(undefined)
135
- unsubscribeFnArr.forEach(fn => fn())
136
- }
137
- })
1
+ import * as d3 from 'd3'
2
+ import {
3
+ Subject,
4
+ map,
5
+ distinctUntilChanged,
6
+ shareReplay,
7
+ takeUntil
8
+ } from 'rxjs'
9
+ import type { DefinePluginConfig } from '../../../lib/core-types'
10
+ import {
11
+ defineMultiGridPlugin } from '../../../lib/core'
12
+ import { DEFAULT_MULTI_GROUP_AXIS_PARAMS } from '../defaults'
13
+ import { createBaseGroupAxis } from '../../base/BaseGroupAxis'
14
+ import { multiGridPluginDetailObservables } from '../multiGridObservables'
15
+ import { getClassName, getUniID } from '../../utils/orbchartsUtils'
16
+ import { LAYER_INDEX_OF_AXIS } from '../../const'
17
+
18
+ const pluginName = 'MultiGroupAxis'
19
+
20
+ const gridClassName = getClassName(pluginName, 'grid')
21
+
22
+ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_MULTI_GROUP_AXIS_PARAMS> = {
23
+ name: pluginName,
24
+ defaultParams: DEFAULT_MULTI_GROUP_AXIS_PARAMS,
25
+ layerIndex: LAYER_INDEX_OF_AXIS,
26
+ validator: (params, { validateColumns }) => {
27
+ const result = validateColumns(params, {
28
+ gridIndexes: {
29
+ toBe: 'number[] | "all"',
30
+ test: (value: any) => {
31
+ return value === 'all' || (Array.isArray(value) && value.every((v: any) => typeof v === 'number'))
32
+ }
33
+ },
34
+ labelOffset: {
35
+ toBe: '[number, number]',
36
+ test: (value: any) => {
37
+ return Array.isArray(value)
38
+ && value.length === 2
39
+ && typeof value[0] === 'number'
40
+ && typeof value[1] === 'number'
41
+ }
42
+ },
43
+ labelColorType: {
44
+ toBeOption: 'ColorType',
45
+ },
46
+ axisLineVisible: {
47
+ toBeTypes: ['boolean']
48
+ },
49
+ axisLineColorType: {
50
+ toBeOption: 'ColorType',
51
+ },
52
+ ticks: {
53
+ toBe: 'number | null | "all"',
54
+ test: (value: any) => {
55
+ return value === null || value === 'all' || typeof value === 'number'
56
+ }
57
+ },
58
+ tickFormat: {
59
+ toBeTypes: ['string', 'Function']
60
+ },
61
+ tickLineVisible: {
62
+ toBeTypes: ['boolean']
63
+ },
64
+ tickPadding: {
65
+ toBeTypes: ['number']
66
+ },
67
+ tickFullLine: {
68
+ toBeTypes: ['boolean']
69
+ },
70
+ tickFullLineDasharray: {
71
+ toBeTypes: ['string']
72
+ },
73
+ tickColorType: {
74
+ toBeOption: 'ColorType',
75
+ },
76
+ tickTextRotate: {
77
+ toBeTypes: ['number']
78
+ },
79
+ tickTextColorType: {
80
+ toBeOption: 'ColorType',
81
+ }
82
+ })
83
+ return result
84
+ }
85
+ }
86
+
87
+ export const MultiGroupAxis = defineMultiGridPlugin(pluginConfig)(({ selection, name, subject, observer }) => {
88
+ const destroy$ = new Subject()
89
+
90
+ const unsubscribeFnArr: (() => void)[] = []
91
+
92
+ const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
93
+
94
+ multiGridPluginDetail$
95
+ .pipe(
96
+ takeUntil(destroy$)
97
+ )
98
+ .subscribe(data => {
99
+ // 每次重新計算時,清除之前的訂閱
100
+ unsubscribeFnArr.forEach(fn => fn())
101
+
102
+ selection.selectAll(`g.${gridClassName}`)
103
+ .data(data)
104
+ .join('g')
105
+ .attr('class', gridClassName)
106
+ .each((d, i, g) => {
107
+
108
+ const gridSelection = d3.select(g[i])
109
+
110
+ const isSeriesSeprate$ = d.dataFormatter$.pipe(
111
+ takeUntil(destroy$),
112
+ map(d => d.separateSeries),
113
+ distinctUntilChanged(),
114
+ shareReplay(1)
115
+ )
116
+
117
+ unsubscribeFnArr[i] = createBaseGroupAxis(pluginName, {
118
+ selection: gridSelection,
119
+ computedData$: d.computedData$,
120
+ fullParams$: observer.fullParams$,
121
+ fullDataFormatter$: d.dataFormatter$,
122
+ fullChartParams$: observer.fullChartParams$,
123
+ gridAxesTransform$: d.gridAxesTransform$,
124
+ gridAxesReverseTransform$: d.gridAxesReverseTransform$,
125
+ gridAxesSize$: d.gridAxesSize$,
126
+ gridContainerPosition$: d.gridContainerPosition$,
127
+ isSeriesSeprate$,
128
+ textSizePx$: observer.textSizePx$,
129
+ })
130
+ })
131
+ })
132
+
133
+ return () => {
134
+ destroy$.next(undefined)
135
+ unsubscribeFnArr.forEach(fn => fn())
136
+ }
137
+ })
@@ -1,107 +1,107 @@
1
- import * as d3 from 'd3'
2
- import {
3
- map,
4
- takeUntil,
5
- Subject } from 'rxjs'
6
- import type { DefinePluginConfig } from '../../../lib/core-types'
7
- import {
8
- defineMultiGridPlugin } from '../../../lib/core'
9
- import { DEFAULT_MULTI_LINE_AREAS_PARAMS } from '../defaults'
10
- import { createBaseLineAreas } from '../../base/BaseLineAreas'
11
- import { multiGridPluginDetailObservables } from '../multiGridObservables'
12
- import { getClassName, getUniID } from '../../utils/orbchartsUtils'
13
- import { LAYER_INDEX_OF_GRAPHIC_GROUND } from '../../const'
14
-
15
- const pluginName = 'MultiLineAreas'
16
-
17
- const gridClassName = getClassName(pluginName, 'grid')
18
-
19
- const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_MULTI_LINE_AREAS_PARAMS> = {
20
- name: pluginName,
21
- defaultParams: DEFAULT_MULTI_LINE_AREAS_PARAMS,
22
- layerIndex: LAYER_INDEX_OF_GRAPHIC_GROUND,
23
- validator: (params, { validateColumns }) => {
24
- const result = validateColumns(params, {
25
- gridIndexes: {
26
- toBe: 'number[] | "all"',
27
- test: (value: any) => {
28
- return value === 'all' || (Array.isArray(value) && value.every((v: any) => typeof v === 'number'))
29
- }
30
- },
31
- lineCurve: {
32
- toBeTypes: ['string']
33
- },
34
- linearGradientOpacity: {
35
- toBe: '[number, number]',
36
- test: (value: any) => {
37
- return Array.isArray(value)
38
- && value.length === 2
39
- && typeof value[0] === 'number'
40
- && typeof value[1] === 'number'
41
- }
42
- },
43
- })
44
- return result
45
- }
46
- }
47
-
48
- export const MultiLineAreas = defineMultiGridPlugin(pluginConfig)(({ selection, name, subject, observer }) => {
49
- const destroy$ = new Subject()
50
-
51
- const unsubscribeFnArr: (() => void)[] = []
52
-
53
- // 攤平所有grid的containerPosition
54
- const allContainerPosition$ = observer.multiGridContainerPosition$.pipe(
55
- takeUntil(destroy$),
56
- map(data => {
57
- return data.flat()
58
- })
59
- )
60
-
61
- const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
62
-
63
- multiGridPluginDetail$
64
- .pipe(
65
- takeUntil(destroy$)
66
- )
67
- .subscribe(data => {
68
- // 每次重新計算時,清除之前的訂閱
69
- unsubscribeFnArr.forEach(fn => fn())
70
-
71
- selection.selectAll(`g.${gridClassName}`)
72
- .data(data)
73
- .join('g')
74
- .attr('class', gridClassName)
75
- .each((d, i, g) => {
76
-
77
- const gridSelection = d3.select(g[i])
78
-
79
- unsubscribeFnArr[i] = createBaseLineAreas(pluginName, {
80
- selection: gridSelection,
81
- computedData$: d.computedData$,
82
- computedAxesData$: d.computedAxesData$,
83
- visibleComputedData$: d.visibleComputedData$,
84
- visibleComputedAxesData$: d.visibleComputedAxesData$,
85
- seriesLabels$: d.seriesLabels$,
86
- SeriesDataMap$: d.SeriesDataMap$,
87
- GroupDataMap$: d.GroupDataMap$,
88
- fullDataFormatter$: d.dataFormatter$,
89
- fullParams$: observer.fullParams$,
90
- fullChartParams$: observer.fullChartParams$,
91
- gridAxesTransform$: d.gridAxesTransform$,
92
- gridGraphicTransform$: d.gridGraphicTransform$,
93
- gridAxesSize$: d.gridAxesSize$,
94
- gridHighlight$: observer.multiGridHighlight$,
95
- gridContainerPosition$: d.gridContainerPosition$,
96
- allContainerPosition$: allContainerPosition$,
97
- layout$: observer.layout$,
98
- event$: subject.event$ as Subject<any>,
99
- })
100
- })
101
- })
102
-
103
- return () => {
104
- destroy$.next(undefined)
105
- unsubscribeFnArr.forEach(fn => fn())
106
- }
107
- })
1
+ import * as d3 from 'd3'
2
+ import {
3
+ map,
4
+ takeUntil,
5
+ Subject } from 'rxjs'
6
+ import type { DefinePluginConfig } from '../../../lib/core-types'
7
+ import {
8
+ defineMultiGridPlugin } from '../../../lib/core'
9
+ import { DEFAULT_MULTI_LINE_AREAS_PARAMS } from '../defaults'
10
+ import { createBaseLineAreas } from '../../base/BaseLineAreas'
11
+ import { multiGridPluginDetailObservables } from '../multiGridObservables'
12
+ import { getClassName, getUniID } from '../../utils/orbchartsUtils'
13
+ import { LAYER_INDEX_OF_GRAPHIC_GROUND } from '../../const'
14
+
15
+ const pluginName = 'MultiLineAreas'
16
+
17
+ const gridClassName = getClassName(pluginName, 'grid')
18
+
19
+ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_MULTI_LINE_AREAS_PARAMS> = {
20
+ name: pluginName,
21
+ defaultParams: DEFAULT_MULTI_LINE_AREAS_PARAMS,
22
+ layerIndex: LAYER_INDEX_OF_GRAPHIC_GROUND,
23
+ validator: (params, { validateColumns }) => {
24
+ const result = validateColumns(params, {
25
+ gridIndexes: {
26
+ toBe: 'number[] | "all"',
27
+ test: (value: any) => {
28
+ return value === 'all' || (Array.isArray(value) && value.every((v: any) => typeof v === 'number'))
29
+ }
30
+ },
31
+ lineCurve: {
32
+ toBeTypes: ['string']
33
+ },
34
+ linearGradientOpacity: {
35
+ toBe: '[number, number]',
36
+ test: (value: any) => {
37
+ return Array.isArray(value)
38
+ && value.length === 2
39
+ && typeof value[0] === 'number'
40
+ && typeof value[1] === 'number'
41
+ }
42
+ },
43
+ })
44
+ return result
45
+ }
46
+ }
47
+
48
+ export const MultiLineAreas = defineMultiGridPlugin(pluginConfig)(({ selection, name, subject, observer }) => {
49
+ const destroy$ = new Subject()
50
+
51
+ const unsubscribeFnArr: (() => void)[] = []
52
+
53
+ // 攤平所有grid的containerPosition
54
+ const allContainerPosition$ = observer.multiGridContainerPosition$.pipe(
55
+ takeUntil(destroy$),
56
+ map(data => {
57
+ return data.flat()
58
+ })
59
+ )
60
+
61
+ const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
62
+
63
+ multiGridPluginDetail$
64
+ .pipe(
65
+ takeUntil(destroy$)
66
+ )
67
+ .subscribe(data => {
68
+ // 每次重新計算時,清除之前的訂閱
69
+ unsubscribeFnArr.forEach(fn => fn())
70
+
71
+ selection.selectAll(`g.${gridClassName}`)
72
+ .data(data)
73
+ .join('g')
74
+ .attr('class', gridClassName)
75
+ .each((d, i, g) => {
76
+
77
+ const gridSelection = d3.select(g[i])
78
+
79
+ unsubscribeFnArr[i] = createBaseLineAreas(pluginName, {
80
+ selection: gridSelection,
81
+ computedData$: d.computedData$,
82
+ computedAxesData$: d.computedAxesData$,
83
+ visibleComputedData$: d.visibleComputedData$,
84
+ visibleComputedAxesData$: d.visibleComputedAxesData$,
85
+ seriesLabels$: d.seriesLabels$,
86
+ SeriesDataMap$: d.SeriesDataMap$,
87
+ GroupDataMap$: d.GroupDataMap$,
88
+ fullDataFormatter$: d.dataFormatter$,
89
+ fullParams$: observer.fullParams$,
90
+ fullChartParams$: observer.fullChartParams$,
91
+ gridAxesTransform$: d.gridAxesTransform$,
92
+ gridGraphicTransform$: d.gridGraphicTransform$,
93
+ gridAxesSize$: d.gridAxesSize$,
94
+ gridHighlight$: observer.multiGridHighlight$,
95
+ gridContainerPosition$: d.gridContainerPosition$,
96
+ allContainerPosition$: allContainerPosition$,
97
+ layout$: observer.layout$,
98
+ event$: subject.event$ as Subject<any>,
99
+ })
100
+ })
101
+ })
102
+
103
+ return () => {
104
+ destroy$.next(undefined)
105
+ unsubscribeFnArr.forEach(fn => fn())
106
+ }
107
+ })