@orbcharts/core 3.0.0-beta.5 → 3.0.0-beta.7

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 (71) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-core.es.js +1481 -1412
  3. package/dist/orbcharts-core.umd.js +4 -4
  4. package/dist/src/defaults.d.ts +22 -22
  5. package/dist/src/utils/orbchartsUtils.d.ts +7 -7
  6. package/dist/src/utils/relationshipObservables.d.ts +13 -0
  7. package/lib/core-types.ts +7 -7
  8. package/package.json +42 -42
  9. package/src/AbstractChart.ts +57 -57
  10. package/src/GridChart.ts +24 -24
  11. package/src/MultiGridChart.ts +24 -24
  12. package/src/MultiValueChart.ts +24 -24
  13. package/src/RelationshipChart.ts +24 -24
  14. package/src/SeriesChart.ts +24 -24
  15. package/src/TreeChart.ts +24 -24
  16. package/src/base/createBaseChart.ts +505 -505
  17. package/src/base/createBasePlugin.ts +153 -153
  18. package/src/base/validators/chartOptionsValidator.ts +23 -23
  19. package/src/base/validators/chartParamsValidator.ts +133 -133
  20. package/src/base/validators/elementValidator.ts +13 -13
  21. package/src/base/validators/pluginsValidator.ts +14 -14
  22. package/src/defaults.ts +235 -235
  23. package/src/defineGridPlugin.ts +3 -3
  24. package/src/defineMultiGridPlugin.ts +3 -3
  25. package/src/defineMultiValuePlugin.ts +3 -3
  26. package/src/defineNoneDataPlugin.ts +4 -4
  27. package/src/defineRelationshipPlugin.ts +3 -3
  28. package/src/defineSeriesPlugin.ts +3 -3
  29. package/src/defineTreePlugin.ts +3 -3
  30. package/src/grid/computedDataFn.ts +129 -129
  31. package/src/grid/contextObserverCallback.ts +176 -176
  32. package/src/grid/dataFormatterValidator.ts +101 -101
  33. package/src/grid/dataValidator.ts +12 -12
  34. package/src/index.ts +20 -20
  35. package/src/multiGrid/computedDataFn.ts +123 -123
  36. package/src/multiGrid/contextObserverCallback.ts +41 -41
  37. package/src/multiGrid/dataFormatterValidator.ts +115 -115
  38. package/src/multiGrid/dataValidator.ts +12 -12
  39. package/src/multiValue/computedDataFn.ts +110 -110
  40. package/src/multiValue/contextObserverCallback.ts +160 -160
  41. package/src/multiValue/dataFormatterValidator.ts +9 -9
  42. package/src/multiValue/dataValidator.ts +9 -9
  43. package/src/relationship/computedDataFn.ts +144 -125
  44. package/src/relationship/contextObserverCallback.ts +80 -12
  45. package/src/relationship/dataFormatterValidator.ts +9 -9
  46. package/src/relationship/dataValidator.ts +9 -9
  47. package/src/series/computedDataFn.ts +88 -88
  48. package/src/series/contextObserverCallback.ts +100 -100
  49. package/src/series/dataFormatterValidator.ts +41 -41
  50. package/src/series/dataValidator.ts +12 -12
  51. package/src/tree/computedDataFn.ts +129 -129
  52. package/src/tree/contextObserverCallback.ts +58 -58
  53. package/src/tree/dataFormatterValidator.ts +13 -13
  54. package/src/tree/dataValidator.ts +13 -13
  55. package/src/utils/commonUtils.ts +55 -55
  56. package/src/utils/d3Scale.ts +198 -198
  57. package/src/utils/errorMessage.ts +42 -42
  58. package/src/utils/gridObservables.ts +683 -683
  59. package/src/utils/index.ts +9 -9
  60. package/src/utils/multiGridObservables.ts +392 -392
  61. package/src/utils/multiValueObservables.ts +661 -661
  62. package/src/utils/observables.ts +219 -219
  63. package/src/utils/orbchartsUtils.ts +377 -377
  64. package/src/utils/relationshipObservables.ts +85 -0
  65. package/src/utils/seriesObservables.ts +175 -175
  66. package/src/utils/treeObservables.ts +105 -105
  67. package/src/utils/validator.ts +126 -126
  68. package/tsconfig.base.json +13 -13
  69. package/tsconfig.json +2 -2
  70. package/vite-env.d.ts +6 -6
  71. package/vite.config.js +22 -22
@@ -1,102 +1,102 @@
1
- import type { DataFormatterValidator, DataFormatterTypeMap } from '../../lib/core-types'
2
- import { validateColumns } from '../utils/validator'
3
-
4
- export const dataFormatterValidator: DataFormatterValidator<'grid'> = (dataFormatter: DataFormatterTypeMap<'grid'>) => {
5
- const result = validateColumns(dataFormatter, {
6
- visibleFilter: {
7
- toBeTypes: ['Function']
8
- },
9
- grid: {
10
- toBeTypes: ['object']
11
- },
12
- container: {
13
- toBeTypes: ['object']
14
- }
15
- })
16
- if (dataFormatter.grid) {
17
- const visibleFilterResult = validateColumns(dataFormatter.grid, {
18
- seriesDirection: {
19
- toBe: '"row" | "column"',
20
- test: (value) => value === 'row' || value === 'column'
21
- },
22
- rowLabels: {
23
- toBeTypes: ['string[]']
24
- },
25
- columnLabels: {
26
- toBeTypes: ['string[]']
27
- },
28
- valueAxis: {
29
- toBeTypes: ['object']
30
- },
31
- groupAxis: {
32
- toBeTypes: ['object']
33
- },
34
- separateSeries: {
35
- toBeTypes: ['boolean']
36
- }
37
- })
38
- if (visibleFilterResult.status === 'error') {
39
- return visibleFilterResult
40
- }
41
- if (dataFormatter.grid.valueAxis) {
42
- const valueAxisResult = validateColumns(dataFormatter.grid.valueAxis, {
43
- position: {
44
- toBe: '"bottom" | "left" | "top" | "right"',
45
- test: (value) => value === 'bottom' || value === 'left' || value === 'top' || value === 'right'
46
- },
47
- scaleDomain: {
48
- toBe: '[number | "min" | "auto", number | "max" | "auto"]',
49
- test: (value) => Array.isArray(value) && value.length === 2 && (typeof value[0] === 'number' || value[0] === 'min' || value[0] === 'auto') && (typeof value[1] === 'number' || value[1] === 'max' || value[1] === 'auto')
50
- },
51
- scaleRange: {
52
- toBe: '[number, number]',
53
- test: (value) => Array.isArray(value) && value.length === 2 && typeof value[0] === 'number' && typeof value[1] === 'number'
54
- },
55
- label: {
56
- toBeTypes: ['string']
57
- }
58
- })
59
- if (valueAxisResult.status === 'error') {
60
- return valueAxisResult
61
- }
62
- }
63
- if (dataFormatter.grid.groupAxis) {
64
- const groupAxisResult = validateColumns(dataFormatter.grid.groupAxis, {
65
- position: {
66
- toBe: '"bottom" | "left" | "top" | "right"',
67
- test: (value) => value === 'bottom' || value === 'left' || value === 'top' || value === 'right'
68
- },
69
- scaleDomain: {
70
- toBe: '[number, number | "max"]',
71
- test: (value) => Array.isArray(value) && value.length === 2 && typeof value[0] === 'number' && (typeof value[1] === 'number' || value[1] === 'max')
72
- },
73
- scalePadding: {
74
- toBeTypes: ['number']
75
- },
76
- label: {
77
- toBeTypes: ['string']
78
- }
79
- })
80
- if (groupAxisResult.status === 'error') {
81
- return groupAxisResult
82
- }
83
- }
84
- }
85
- if (dataFormatter.container) {
86
- const containerResult = validateColumns(dataFormatter.container, {
87
- gap: {
88
- toBeTypes: ['number']
89
- },
90
- rowAmount: {
91
- toBeTypes: ['number']
92
- },
93
- columnAmount: {
94
- toBeTypes: ['number']
95
- }
96
- })
97
- if (containerResult.status === 'error') {
98
- return containerResult
99
- }
100
- }
101
- return result
1
+ import type { DataFormatterValidator, DataFormatterTypeMap } from '../../lib/core-types'
2
+ import { validateColumns } from '../utils/validator'
3
+
4
+ export const dataFormatterValidator: DataFormatterValidator<'grid'> = (dataFormatter: DataFormatterTypeMap<'grid'>) => {
5
+ const result = validateColumns(dataFormatter, {
6
+ visibleFilter: {
7
+ toBeTypes: ['Function']
8
+ },
9
+ // grid: {
10
+ // toBeTypes: ['object']
11
+ // },
12
+ container: {
13
+ toBeTypes: ['object']
14
+ }
15
+ })
16
+ // if (dataFormatter.grid) {
17
+ const visibleFilterResult = validateColumns(dataFormatter, {
18
+ seriesDirection: {
19
+ toBe: '"row" | "column"',
20
+ test: (value) => value === 'row' || value === 'column'
21
+ },
22
+ rowLabels: {
23
+ toBeTypes: ['string[]']
24
+ },
25
+ columnLabels: {
26
+ toBeTypes: ['string[]']
27
+ },
28
+ valueAxis: {
29
+ toBeTypes: ['object']
30
+ },
31
+ groupAxis: {
32
+ toBeTypes: ['object']
33
+ },
34
+ separateSeries: {
35
+ toBeTypes: ['boolean']
36
+ }
37
+ })
38
+ if (visibleFilterResult.status === 'error') {
39
+ return visibleFilterResult
40
+ }
41
+ if (dataFormatter.valueAxis) {
42
+ const valueAxisResult = validateColumns(dataFormatter.valueAxis, {
43
+ position: {
44
+ toBe: '"bottom" | "left" | "top" | "right"',
45
+ test: (value) => value === 'bottom' || value === 'left' || value === 'top' || value === 'right'
46
+ },
47
+ scaleDomain: {
48
+ toBe: '[number | "min" | "auto", number | "max" | "auto"]',
49
+ test: (value) => Array.isArray(value) && value.length === 2 && (typeof value[0] === 'number' || value[0] === 'min' || value[0] === 'auto') && (typeof value[1] === 'number' || value[1] === 'max' || value[1] === 'auto')
50
+ },
51
+ scaleRange: {
52
+ toBe: '[number, number]',
53
+ test: (value) => Array.isArray(value) && value.length === 2 && typeof value[0] === 'number' && typeof value[1] === 'number'
54
+ },
55
+ label: {
56
+ toBeTypes: ['string']
57
+ }
58
+ })
59
+ if (valueAxisResult.status === 'error') {
60
+ return valueAxisResult
61
+ }
62
+ }
63
+ if (dataFormatter.groupAxis) {
64
+ const groupAxisResult = validateColumns(dataFormatter.groupAxis, {
65
+ position: {
66
+ toBe: '"bottom" | "left" | "top" | "right"',
67
+ test: (value) => value === 'bottom' || value === 'left' || value === 'top' || value === 'right'
68
+ },
69
+ scaleDomain: {
70
+ toBe: '[number, number | "max"]',
71
+ test: (value) => Array.isArray(value) && value.length === 2 && typeof value[0] === 'number' && (typeof value[1] === 'number' || value[1] === 'max')
72
+ },
73
+ scalePadding: {
74
+ toBeTypes: ['number']
75
+ },
76
+ label: {
77
+ toBeTypes: ['string']
78
+ }
79
+ })
80
+ if (groupAxisResult.status === 'error') {
81
+ return groupAxisResult
82
+ }
83
+ }
84
+ // }
85
+ if (dataFormatter.container) {
86
+ const containerResult = validateColumns(dataFormatter.container, {
87
+ gap: {
88
+ toBeTypes: ['number']
89
+ },
90
+ rowAmount: {
91
+ toBeTypes: ['number']
92
+ },
93
+ columnAmount: {
94
+ toBeTypes: ['number']
95
+ }
96
+ })
97
+ if (containerResult.status === 'error') {
98
+ return containerResult
99
+ }
100
+ }
101
+ return result
102
102
  }
@@ -1,13 +1,13 @@
1
- import type { DataValidator, DataTypeMap } from '../../lib/core-types'
2
- import { validateColumns } from '../utils/validator'
3
-
4
- export const dataValidator: DataValidator<'grid'> = (data: DataTypeMap<'grid'>) => {
5
- const result = validateColumns({ data }, {
6
- data: {
7
- toBe: '(DataGridDatum | DataGridValue)[][]',
8
- // 畢免資料量過大檢查不完,不深度檢查
9
- test: (value) => Array.isArray(value)
10
- }
11
- })
12
- return result
1
+ import type { DataValidator, DataTypeMap } from '../../lib/core-types'
2
+ import { validateColumns } from '../utils/validator'
3
+
4
+ export const dataValidator: DataValidator<'grid'> = (data: DataTypeMap<'grid'>) => {
5
+ const result = validateColumns({ data }, {
6
+ data: {
7
+ toBe: '(DataGridDatum | DataGridValue)[][]',
8
+ // 畢免資料量過大檢查不完,不深度檢查
9
+ test: (value) => Array.isArray(value)
10
+ }
11
+ })
12
+ return result
13
13
  }
package/src/index.ts CHANGED
@@ -1,20 +1,20 @@
1
-
2
- export { SeriesChart } from './SeriesChart'
3
- export { GridChart } from './GridChart'
4
- export { MultiGridChart } from './MultiGridChart'
5
- export { MultiValueChart } from './MultiValueChart'
6
- export { RelationshipChart } from './RelationshipChart'
7
- export { TreeChart } from './TreeChart'
8
-
9
- export { defineSeriesPlugin } from './defineSeriesPlugin'
10
- export { defineGridPlugin } from './defineGridPlugin'
11
- export { defineMultiGridPlugin } from './defineMultiGridPlugin'
12
- export { defineMultiValuePlugin } from './defineMultiValuePlugin'
13
- export { defineNoneDataPlugin } from './defineNoneDataPlugin'
14
- export { defineRelationshipPlugin } from './defineRelationshipPlugin'
15
- export { defineTreePlugin } from './defineTreePlugin'
16
-
17
- export * from './utils'
18
- export * from './defaults'
19
-
20
-
1
+
2
+ export { SeriesChart } from './SeriesChart'
3
+ export { GridChart } from './GridChart'
4
+ export { MultiGridChart } from './MultiGridChart'
5
+ export { MultiValueChart } from './MultiValueChart'
6
+ export { RelationshipChart } from './RelationshipChart'
7
+ export { TreeChart } from './TreeChart'
8
+
9
+ export { defineSeriesPlugin } from './defineSeriesPlugin'
10
+ export { defineGridPlugin } from './defineGridPlugin'
11
+ export { defineMultiGridPlugin } from './defineMultiGridPlugin'
12
+ export { defineMultiValuePlugin } from './defineMultiValuePlugin'
13
+ export { defineNoneDataPlugin } from './defineNoneDataPlugin'
14
+ export { defineRelationshipPlugin } from './defineRelationshipPlugin'
15
+ export { defineTreePlugin } from './defineTreePlugin'
16
+
17
+ export * from './utils'
18
+ export * from './defaults'
19
+
20
+
@@ -1,123 +1,123 @@
1
- import type { ComputedDataFn, ComputedDatumGrid, DataFormatterGridGrid, ComputedDataMultiGrid } from '../../lib/core-types'
2
- import { DATA_FORMATTER_MULTI_GRID_GRID_DEFAULT } from '../defaults'
3
- import {
4
- createDefaultDatumId,
5
- seriesColorPredicate,
6
- createGridSeriesLabels,
7
- createMultiGridSeriesLabels,
8
- createMultiGridGroupLabels
9
- } from '../utils/orbchartsUtils'
10
- import { createTransposedDataGrid } from '../grid/computedDataFn'
11
-
12
- export const computedDataFn: ComputedDataFn<'multiGrid'> = (context) => {
13
- const { data = [], dataFormatter, chartParams } = context
14
- if (!data.length) {
15
- return []
16
- }
17
-
18
- let multiGridData: ComputedDataMultiGrid = []
19
-
20
- try {
21
- const defaultGrid = dataFormatter.gridList[0] || DATA_FORMATTER_MULTI_GRID_GRID_DEFAULT
22
-
23
- // 計算每個grid的dataFormatter
24
- const gridDataFormatterList: DataFormatterGridGrid[] = data.map((gridData, gridIndex) => {
25
- return dataFormatter.gridList[gridIndex] || defaultGrid
26
- })
27
-
28
- const transposedDataGridList = data.map((gridData, gridIndex) => {
29
- // 依seriesDirection轉置資料矩陣
30
- return createTransposedDataGrid(gridData, gridDataFormatterList[gridIndex])
31
- })
32
-
33
- // const isOverlappingMultiGrid = (() => {
34
- // const SlotIndexSet = new Set(gridDataFormatterList.map(d => d.slotIndex))
35
- // // 判斷是否有重疊的grid
36
- // return SlotIndexSet.size !== gridDataFormatterList.length
37
- // })()
38
-
39
- const multiGridSeriesLabels = dataFormatter.separateGrid
40
- // grid分開的時候,預設每組的seriesLabels相同
41
- ? transposedDataGridList
42
- .map((gridData, gridIndex) => {
43
- return createGridSeriesLabels({
44
- transposedDataGrid: gridData,
45
- dataFormatterGrid: gridDataFormatterList[gridIndex],
46
- chartType: 'multiGrid',
47
- })
48
- })
49
- // grid不分開的時候,預設每個grid相同seriesIndex的seriesLabel相同
50
- : transposedDataGridList
51
- .map((gridData, gridIndex) => {
52
- return createMultiGridSeriesLabels({
53
- transposedDataGrid: gridData,
54
- dataFormatterGrid: gridDataFormatterList[gridIndex],
55
- chartType: 'multiGrid',
56
- gridIndex
57
- })
58
- })
59
-
60
- const SeriesLabelColorMap: Map<string, string> = new Map()
61
- let accIndex = 0
62
- multiGridSeriesLabels.flat().forEach((label, i) => {
63
- if (!SeriesLabelColorMap.has(label)) {
64
- const color = seriesColorPredicate(accIndex, chartParams)
65
- SeriesLabelColorMap.set(label, color)
66
- accIndex ++
67
- }
68
- })
69
-
70
- // 計算每個grid的資料
71
- multiGridData = transposedDataGridList.map((gridData, gridIndex) => {
72
- const gridSeriesLabels = multiGridSeriesLabels[gridIndex]
73
- const groupLabels = createMultiGridGroupLabels({
74
- transposedDataGrid: gridData,
75
- dataFormatterGrid: gridDataFormatterList[gridIndex],
76
- chartType: 'multiGrid',
77
- gridIndex
78
- })
79
-
80
- let _index = 0
81
- let computedDataGrid: ComputedDatumGrid[][] = gridData.map((seriesData, seriesIndex) => {
82
- return seriesData.map((groupDatum, groupIndex) => {
83
-
84
- const defaultId = createDefaultDatumId('multiGrid', gridIndex, seriesIndex, groupIndex)
85
- const groupLabel = groupLabels[groupIndex]
86
- const seriesLabel = gridSeriesLabels[seriesIndex]
87
-
88
- const computedDatum: ComputedDatumGrid = {
89
- id: groupDatum.id ? groupDatum.id : defaultId,
90
- index: _index,
91
- label: groupDatum.label ? groupDatum.label : defaultId,
92
- description: groupDatum.description ?? '',
93
- data: groupDatum.data,
94
- value: groupDatum.value,
95
- gridIndex,
96
- // accSeriesIndex: seriesIndex, // 預設為seriesIndex
97
- seriesIndex,
98
- seriesLabel,
99
- groupIndex,
100
- groupLabel,
101
- color: SeriesLabelColorMap.get(seriesLabel),
102
- visible: true // 先給一個預設值
103
- }
104
-
105
- computedDatum.visible = dataFormatter.visibleFilter(computedDatum, context)
106
-
107
- _index ++
108
-
109
- return computedDatum
110
- })
111
- })
112
-
113
- return computedDataGrid
114
- })
115
-
116
-
117
- } catch (e) {
118
- // console.error(e)
119
- throw Error(e)
120
- }
121
-
122
- return multiGridData
123
- }
1
+ import type { ComputedDataFn, ComputedDatumGrid, DataFormatterGridGrid, ComputedDataMultiGrid } from '../../lib/core-types'
2
+ import { DEFAULT_DATA_FORMATTER_MULTI_GRID_GRID } from '../defaults'
3
+ import {
4
+ createDefaultDatumId,
5
+ seriesColorPredicate,
6
+ createGridSeriesLabels,
7
+ createMultiGridSeriesLabels,
8
+ createMultiGridGroupLabels
9
+ } from '../utils/orbchartsUtils'
10
+ import { createTransposedDataGrid } from '../grid/computedDataFn'
11
+
12
+ export const computedDataFn: ComputedDataFn<'multiGrid'> = (context) => {
13
+ const { data = [], dataFormatter, chartParams } = context
14
+ if (!data.length) {
15
+ return []
16
+ }
17
+
18
+ let multiGridData: ComputedDataMultiGrid = []
19
+
20
+ try {
21
+ const defaultGrid = dataFormatter.gridList[0] || DEFAULT_DATA_FORMATTER_MULTI_GRID_GRID
22
+
23
+ // 計算每個grid的dataFormatter
24
+ const gridDataFormatterList: DataFormatterGridGrid[] = data.map((gridData, gridIndex) => {
25
+ return dataFormatter.gridList[gridIndex] || defaultGrid
26
+ })
27
+
28
+ const transposedDataGridList = data.map((gridData, gridIndex) => {
29
+ // 依seriesDirection轉置資料矩陣
30
+ return createTransposedDataGrid(gridData, gridDataFormatterList[gridIndex])
31
+ })
32
+
33
+ // const isOverlappingMultiGrid = (() => {
34
+ // const SlotIndexSet = new Set(gridDataFormatterList.map(d => d.slotIndex))
35
+ // // 判斷是否有重疊的grid
36
+ // return SlotIndexSet.size !== gridDataFormatterList.length
37
+ // })()
38
+
39
+ const multiGridSeriesLabels = dataFormatter.separateGrid
40
+ // grid分開的時候,預設每組的seriesLabels相同
41
+ ? transposedDataGridList
42
+ .map((gridData, gridIndex) => {
43
+ return createGridSeriesLabels({
44
+ transposedDataGrid: gridData,
45
+ dataFormatterGrid: gridDataFormatterList[gridIndex],
46
+ chartType: 'multiGrid',
47
+ })
48
+ })
49
+ // grid不分開的時候,預設每個grid相同seriesIndex的seriesLabel相同
50
+ : transposedDataGridList
51
+ .map((gridData, gridIndex) => {
52
+ return createMultiGridSeriesLabels({
53
+ transposedDataGrid: gridData,
54
+ dataFormatterGrid: gridDataFormatterList[gridIndex],
55
+ chartType: 'multiGrid',
56
+ gridIndex
57
+ })
58
+ })
59
+
60
+ const SeriesLabelColorMap: Map<string, string> = new Map()
61
+ let accIndex = 0
62
+ multiGridSeriesLabels.flat().forEach((label, i) => {
63
+ if (!SeriesLabelColorMap.has(label)) {
64
+ const color = seriesColorPredicate(accIndex, chartParams)
65
+ SeriesLabelColorMap.set(label, color)
66
+ accIndex ++
67
+ }
68
+ })
69
+
70
+ // 計算每個grid的資料
71
+ multiGridData = transposedDataGridList.map((gridData, gridIndex) => {
72
+ const gridSeriesLabels = multiGridSeriesLabels[gridIndex]
73
+ const groupLabels = createMultiGridGroupLabels({
74
+ transposedDataGrid: gridData,
75
+ dataFormatterGrid: gridDataFormatterList[gridIndex],
76
+ chartType: 'multiGrid',
77
+ gridIndex
78
+ })
79
+
80
+ let _index = 0
81
+ let computedDataGrid: ComputedDatumGrid[][] = gridData.map((seriesData, seriesIndex) => {
82
+ return seriesData.map((groupDatum, groupIndex) => {
83
+
84
+ const defaultId = createDefaultDatumId('multiGrid', gridIndex, seriesIndex, groupIndex)
85
+ const groupLabel = groupLabels[groupIndex]
86
+ const seriesLabel = gridSeriesLabels[seriesIndex]
87
+
88
+ const computedDatum: ComputedDatumGrid = {
89
+ id: groupDatum.id ? groupDatum.id : defaultId,
90
+ index: _index,
91
+ label: groupDatum.label ? groupDatum.label : defaultId,
92
+ description: groupDatum.description ?? '',
93
+ data: groupDatum.data,
94
+ value: groupDatum.value,
95
+ gridIndex,
96
+ // accSeriesIndex: seriesIndex, // 預設為seriesIndex
97
+ seriesIndex,
98
+ seriesLabel,
99
+ groupIndex,
100
+ groupLabel,
101
+ color: SeriesLabelColorMap.get(seriesLabel),
102
+ visible: true // 先給一個預設值
103
+ }
104
+
105
+ computedDatum.visible = dataFormatter.visibleFilter(computedDatum, context)
106
+
107
+ _index ++
108
+
109
+ return computedDatum
110
+ })
111
+ })
112
+
113
+ return computedDataGrid
114
+ })
115
+
116
+
117
+ } catch (e) {
118
+ // console.error(e)
119
+ throw Error(e)
120
+ }
121
+
122
+ return multiGridData
123
+ }
@@ -1,41 +1,41 @@
1
- import {
2
- map,
3
- shareReplay } from 'rxjs'
4
- import type { ContextObserverCallback } from '../../lib/core-types'
5
- import { multiGridEachDetailObservable, multiGridContainerObservable } from '../utils/multiGridObservables'
6
- import { textSizePxObservable } from '../utils/observables'
7
-
8
- export const contextObserverCallback: ContextObserverCallback<'multiGrid'> = ({ subject, observer }) => {
9
-
10
- const textSizePx$ = textSizePxObservable(observer.fullChartParams$).pipe(
11
- shareReplay(1)
12
- )
13
-
14
- const multiGridEachDetail$ = multiGridEachDetailObservable({
15
- fullDataFormatter$: observer.fullDataFormatter$,
16
- computedData$: observer.computedData$,
17
- layout$: observer.layout$,
18
- fullChartParams$: observer.fullChartParams$,
19
- event$: subject.event$
20
- }).pipe(
21
- shareReplay(1)
22
- )
23
-
24
- const multiGridContainerPosition$ = multiGridContainerObservable({
25
- computedData$: observer.computedData$,
26
- fullDataFormatter$: observer.fullDataFormatter$,
27
- layout$: observer.layout$,
28
- })
29
-
30
- return {
31
- fullParams$: observer.fullParams$,
32
- fullChartParams$: observer.fullChartParams$,
33
- fullDataFormatter$: observer.fullDataFormatter$,
34
- computedData$: observer.computedData$,
35
- layout$: observer.layout$,
36
- textSizePx$,
37
- multiGridContainerPosition$,
38
- multiGridEachDetail$,
39
- // multiGridContainer$
40
- }
41
- }
1
+ import {
2
+ map,
3
+ shareReplay } from 'rxjs'
4
+ import type { ContextObserverCallback } from '../../lib/core-types'
5
+ import { multiGridEachDetailObservable, multiGridContainerObservable } from '../utils/multiGridObservables'
6
+ import { textSizePxObservable } from '../utils/observables'
7
+
8
+ export const contextObserverCallback: ContextObserverCallback<'multiGrid'> = ({ subject, observer }) => {
9
+
10
+ const textSizePx$ = textSizePxObservable(observer.fullChartParams$).pipe(
11
+ shareReplay(1)
12
+ )
13
+
14
+ const multiGridEachDetail$ = multiGridEachDetailObservable({
15
+ fullDataFormatter$: observer.fullDataFormatter$,
16
+ computedData$: observer.computedData$,
17
+ layout$: observer.layout$,
18
+ fullChartParams$: observer.fullChartParams$,
19
+ event$: subject.event$
20
+ }).pipe(
21
+ shareReplay(1)
22
+ )
23
+
24
+ const multiGridContainerPosition$ = multiGridContainerObservable({
25
+ computedData$: observer.computedData$,
26
+ fullDataFormatter$: observer.fullDataFormatter$,
27
+ layout$: observer.layout$,
28
+ })
29
+
30
+ return {
31
+ fullParams$: observer.fullParams$,
32
+ fullChartParams$: observer.fullChartParams$,
33
+ fullDataFormatter$: observer.fullDataFormatter$,
34
+ computedData$: observer.computedData$,
35
+ layout$: observer.layout$,
36
+ textSizePx$,
37
+ multiGridContainerPosition$,
38
+ multiGridEachDetail$,
39
+ // multiGridContainer$
40
+ }
41
+ }