@orbcharts/plugins-basic 3.0.0-alpha.45 → 3.0.0-alpha.47
Sign up to get free protection for your applications and to get access to all the features.
- package/LICENSE +200 -200
- package/dist/orbcharts-plugins-basic.es.js +826 -791
- package/dist/orbcharts-plugins-basic.umd.js +7 -7
- package/dist/src/index.d.ts +5 -1
- package/dist/{orbcharts-plugins-basic/src → src}/series/seriesObservables.d.ts +4 -4
- package/package.json +42 -42
- package/src/base/BaseBarStack.ts +778 -778
- package/src/base/BaseBars.ts +764 -764
- package/src/base/BaseBarsTriangle.ts +672 -672
- package/src/base/BaseDots.ts +502 -502
- package/src/base/BaseGroupAxis.ts +496 -496
- package/src/base/BaseLegend.ts +641 -641
- package/src/base/BaseLineAreas.ts +625 -625
- package/src/base/BaseLines.ts +699 -699
- package/src/base/BaseValueAxis.ts +478 -478
- package/src/base/types.ts +2 -2
- package/src/grid/defaults.ts +121 -121
- package/src/grid/gridObservables.ts +247 -247
- package/src/grid/index.ts +15 -15
- package/src/grid/plugins/BarStack.ts +50 -50
- package/src/grid/plugins/Bars.ts +51 -51
- package/src/grid/plugins/BarsDiverging.ts +41 -41
- package/src/grid/plugins/BarsTriangle.ts +50 -50
- package/src/grid/plugins/Dots.ts +37 -37
- package/src/grid/plugins/GridLegend.ts +59 -59
- package/src/grid/plugins/GroupAux.ts +645 -645
- package/src/grid/plugins/GroupAxis.ts +42 -42
- package/src/grid/plugins/LineAreas.ts +39 -39
- package/src/grid/plugins/Lines.ts +38 -38
- package/src/grid/plugins/ScalingArea.ts +173 -173
- package/src/grid/plugins/ValueAxis.ts +43 -43
- package/src/grid/plugins/ValueStackAxis.ts +79 -79
- package/src/grid/types.ts +120 -120
- package/src/index.ts +9 -9
- package/src/multiGrid/defaults.ts +147 -147
- package/src/multiGrid/index.ts +11 -11
- package/src/multiGrid/multiGridObservables.ts +42 -42
- package/src/multiGrid/plugins/MultiBarStack.ts +78 -74
- package/src/multiGrid/plugins/MultiBars.ts +77 -73
- package/src/multiGrid/plugins/MultiBarsTriangle.ts +77 -73
- package/src/multiGrid/plugins/MultiDots.ts +65 -60
- package/src/multiGrid/plugins/MultiGridLegend.ts +89 -89
- package/src/multiGrid/plugins/MultiGroupAxis.ts +69 -65
- package/src/multiGrid/plugins/MultiLineAreas.ts +67 -62
- package/src/multiGrid/plugins/MultiLines.ts +66 -61
- package/src/multiGrid/plugins/MultiValueAxis.ts +69 -65
- package/src/multiGrid/plugins/OverlappingValueAxes.ts +173 -169
- package/src/multiGrid/types.ts +67 -67
- package/src/noneData/defaults.ts +64 -64
- package/src/noneData/index.ts +3 -3
- package/src/noneData/plugins/Container.ts +10 -10
- package/src/noneData/plugins/Tooltip.ts +310 -310
- package/src/noneData/types.ts +26 -26
- package/src/series/defaults.ts +109 -109
- package/src/series/index.ts +6 -6
- package/src/series/plugins/Bubbles.ts +602 -571
- package/src/series/plugins/Pie.ts +563 -548
- package/src/series/plugins/PieEventTexts.ts +262 -258
- package/src/series/plugins/PieLabels.ts +339 -335
- package/src/series/plugins/SeriesLegend.ts +59 -59
- package/src/series/seriesObservables.ts +145 -145
- package/src/series/seriesUtils.ts +50 -50
- package/src/series/types.ts +67 -67
- package/src/tree/defaults.ts +22 -22
- package/src/tree/index.ts +3 -3
- package/src/tree/plugins/TreeLegend.ts +59 -59
- package/src/tree/plugins/TreeMap.ts +305 -305
- package/src/tree/types.ts +23 -23
- package/src/utils/commonUtils.ts +21 -21
- package/src/utils/d3Graphics.ts +124 -124
- package/src/utils/d3Utils.ts +73 -73
- package/src/utils/observables.ts +14 -14
- package/src/utils/orbchartsUtils.ts +100 -100
- package/tsconfig.dev.json +16 -16
- package/tsconfig.json +13 -16
- package/tsconfig.prod.json +13 -13
- package/vite.config.js +49 -49
- package/dist/orbcharts-plugins-basic/src/index.d.ts +0 -5
- /package/dist/{orbcharts-plugins-basic/src → src}/base/BaseBarStack.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/base/BaseBars.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/base/BaseBarsTriangle.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/base/BaseDots.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/base/BaseGroupArea.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/base/BaseGroupAxis.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/base/BaseLegend.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/base/BaseLineAreas.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/base/BaseLines.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/base/BaseValueAxis.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/base/types.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/defaults.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/gridObservables.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/index.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/BarStack.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/Bars.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/BarsDiverging.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/BarsTriangle.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/Dots.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/GridLegend.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/GroupAux.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/GroupAxis.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/LineAreas.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/Lines.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/Ranking.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/RankingAxis.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/ScalingArea.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/ValueAxis.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/ValueStackAxis.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/types.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/defaults.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/index.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/multiGridObservables.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/plugins/MultiBarStack.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/plugins/MultiBars.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/plugins/MultiBarsTriangle.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/plugins/MultiDots.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/plugins/MultiGridLegend.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/plugins/MultiGroupAxis.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/plugins/MultiLineAreas.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/plugins/MultiLines.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/plugins/MultiValueAxis.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/plugins/OverlappingValueAxes.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/types.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiValue/index.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiValue/plugins/Scatter.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiValue/plugins/ScatterAxes.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/noneData/defaults.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/noneData/index.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/noneData/plugins/Container.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/noneData/plugins/Tooltip.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/noneData/types.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/relationship/index.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/relationship/plugins/Relationship.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/series/defaults.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/series/index.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/series/plugins/Bubbles.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/series/plugins/Pie.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/series/plugins/PieEventTexts.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/series/plugins/PieLabels.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/series/plugins/SeriesLegend.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/series/plugins/Waffle.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/series/seriesUtils.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/series/types.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/tree/defaults.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/tree/index.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/tree/plugins/TreeLegend.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/tree/plugins/TreeMap.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/tree/types.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/utils/commonUtils.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/utils/d3Graphics.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/utils/d3Utils.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/utils/observables.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/utils/orbchartsUtils.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/vite.config.d.ts → vite.config.d.ts} +0 -0
@@ -1,44 +1,44 @@
|
|
1
|
-
import {
|
2
|
-
Subject,
|
3
|
-
takeUntil,
|
4
|
-
map,
|
5
|
-
distinctUntilChanged,
|
6
|
-
shareReplay
|
7
|
-
} from 'rxjs'
|
8
|
-
import {
|
9
|
-
defineGridPlugin } from '@orbcharts/core'
|
10
|
-
import { DEFAULT_VALUE_AXIS_PARAMS } from '../defaults'
|
11
|
-
|
12
|
-
import { createBaseValueAxis } from '../../base/BaseValueAxis'
|
13
|
-
|
14
|
-
const pluginName = 'ValueAxis'
|
15
|
-
|
16
|
-
export const ValueAxis = defineGridPlugin(pluginName, DEFAULT_VALUE_AXIS_PARAMS)(({ selection, name, observer, subject }) => {
|
17
|
-
|
18
|
-
const destroy$ = new Subject()
|
19
|
-
|
20
|
-
const isSeriesSeprate$ = observer.fullDataFormatter$.pipe(
|
21
|
-
takeUntil(destroy$),
|
22
|
-
map(d => d.grid.separateSeries),
|
23
|
-
distinctUntilChanged(),
|
24
|
-
shareReplay(1)
|
25
|
-
)
|
26
|
-
|
27
|
-
const unsubscribeBaseValueAxis = createBaseValueAxis(pluginName, {
|
28
|
-
selection,
|
29
|
-
computedData$: observer.computedData$,
|
30
|
-
fullParams$: observer.fullParams$,
|
31
|
-
fullDataFormatter$: observer.fullDataFormatter$,
|
32
|
-
fullChartParams$: observer.fullChartParams$,
|
33
|
-
gridAxesTransform$: observer.gridAxesTransform$,
|
34
|
-
gridAxesReverseTransform$: observer.gridAxesReverseTransform$,
|
35
|
-
gridAxesSize$: observer.gridAxesSize$,
|
36
|
-
gridContainerPosition$: observer.gridContainerPosition$,
|
37
|
-
isSeriesSeprate$,
|
38
|
-
})
|
39
|
-
|
40
|
-
return () => {
|
41
|
-
destroy$.next(undefined)
|
42
|
-
unsubscribeBaseValueAxis()
|
43
|
-
}
|
1
|
+
import {
|
2
|
+
Subject,
|
3
|
+
takeUntil,
|
4
|
+
map,
|
5
|
+
distinctUntilChanged,
|
6
|
+
shareReplay
|
7
|
+
} from 'rxjs'
|
8
|
+
import {
|
9
|
+
defineGridPlugin } from '@orbcharts/core'
|
10
|
+
import { DEFAULT_VALUE_AXIS_PARAMS } from '../defaults'
|
11
|
+
|
12
|
+
import { createBaseValueAxis } from '../../base/BaseValueAxis'
|
13
|
+
|
14
|
+
const pluginName = 'ValueAxis'
|
15
|
+
|
16
|
+
export const ValueAxis = defineGridPlugin(pluginName, DEFAULT_VALUE_AXIS_PARAMS)(({ selection, name, observer, subject }) => {
|
17
|
+
|
18
|
+
const destroy$ = new Subject()
|
19
|
+
|
20
|
+
const isSeriesSeprate$ = observer.fullDataFormatter$.pipe(
|
21
|
+
takeUntil(destroy$),
|
22
|
+
map(d => d.grid.separateSeries),
|
23
|
+
distinctUntilChanged(),
|
24
|
+
shareReplay(1)
|
25
|
+
)
|
26
|
+
|
27
|
+
const unsubscribeBaseValueAxis = createBaseValueAxis(pluginName, {
|
28
|
+
selection,
|
29
|
+
computedData$: observer.computedData$,
|
30
|
+
fullParams$: observer.fullParams$,
|
31
|
+
fullDataFormatter$: observer.fullDataFormatter$,
|
32
|
+
fullChartParams$: observer.fullChartParams$,
|
33
|
+
gridAxesTransform$: observer.gridAxesTransform$,
|
34
|
+
gridAxesReverseTransform$: observer.gridAxesReverseTransform$,
|
35
|
+
gridAxesSize$: observer.gridAxesSize$,
|
36
|
+
gridContainerPosition$: observer.gridContainerPosition$,
|
37
|
+
isSeriesSeprate$,
|
38
|
+
})
|
39
|
+
|
40
|
+
return () => {
|
41
|
+
destroy$.next(undefined)
|
42
|
+
unsubscribeBaseValueAxis()
|
43
|
+
}
|
44
44
|
})
|
@@ -1,80 +1,80 @@
|
|
1
|
-
import {
|
2
|
-
takeUntil,
|
3
|
-
map,
|
4
|
-
distinctUntilChanged,
|
5
|
-
shareReplay,
|
6
|
-
switchMap,
|
7
|
-
iif,
|
8
|
-
Subject } from 'rxjs'
|
9
|
-
import {
|
10
|
-
defineGridPlugin } from '@orbcharts/core'
|
11
|
-
import { DEFAULT_VALUE_STACK_AXIS_PARAMS } from '../defaults'
|
12
|
-
|
13
|
-
import { createBaseValueAxis } from '../../base/BaseValueAxis'
|
14
|
-
|
15
|
-
const pluginName = 'ValueStackAxis'
|
16
|
-
|
17
|
-
export const ValueStackAxis = defineGridPlugin(pluginName, DEFAULT_VALUE_STACK_AXIS_PARAMS)(({ selection, name, observer, subject }) => {
|
18
|
-
|
19
|
-
const destroy$ = new Subject()
|
20
|
-
|
21
|
-
// 將原本的value全部替換成加總後的value
|
22
|
-
const stackedData$ = observer.computedData$.pipe(
|
23
|
-
takeUntil(destroy$),
|
24
|
-
map(data => {
|
25
|
-
// 將同一group的value加總起來
|
26
|
-
const stackedValue = new Array(data[0] ? data[0].length : 0)
|
27
|
-
.fill(null)
|
28
|
-
.map((_, i) => {
|
29
|
-
return data.reduce((prev, current) => {
|
30
|
-
if (current && current[i]) {
|
31
|
-
const currentValue = current[i].value == null || current[i].visible == false
|
32
|
-
? 0
|
33
|
-
: current[i].value!
|
34
|
-
return prev + currentValue
|
35
|
-
}
|
36
|
-
return prev
|
37
|
-
}, 0)
|
38
|
-
})
|
39
|
-
// 將原本的value全部替換成加總後的value
|
40
|
-
const computedData = data.map((series, seriesIndex) => {
|
41
|
-
return series.map((d, i) => {
|
42
|
-
return {
|
43
|
-
...d,
|
44
|
-
value: stackedValue[i],
|
45
|
-
}
|
46
|
-
})
|
47
|
-
})
|
48
|
-
return computedData
|
49
|
-
}),
|
50
|
-
)
|
51
|
-
|
52
|
-
const isSeriesSeprate$ = observer.fullDataFormatter$.pipe(
|
53
|
-
takeUntil(destroy$),
|
54
|
-
map(d => d.grid.separateSeries),
|
55
|
-
distinctUntilChanged(),
|
56
|
-
shareReplay(1)
|
57
|
-
)
|
58
|
-
|
59
|
-
const unsubscribeBaseValueAxis = createBaseValueAxis(pluginName, {
|
60
|
-
selection,
|
61
|
-
computedData$: isSeriesSeprate$.pipe(
|
62
|
-
switchMap(isSeriesSeprate => {
|
63
|
-
return iif(() => isSeriesSeprate, observer.computedData$, stackedData$)
|
64
|
-
})
|
65
|
-
),
|
66
|
-
fullParams$: observer.fullParams$,
|
67
|
-
fullDataFormatter$: observer.fullDataFormatter$,
|
68
|
-
fullChartParams$: observer.fullChartParams$,
|
69
|
-
gridAxesTransform$: observer.gridAxesTransform$,
|
70
|
-
gridAxesReverseTransform$: observer.gridAxesReverseTransform$,
|
71
|
-
gridAxesSize$: observer.gridAxesSize$,
|
72
|
-
gridContainerPosition$: observer.gridContainerPosition$,
|
73
|
-
isSeriesSeprate$,
|
74
|
-
})
|
75
|
-
|
76
|
-
return () => {
|
77
|
-
destroy$.next(undefined)
|
78
|
-
unsubscribeBaseValueAxis()
|
79
|
-
}
|
1
|
+
import {
|
2
|
+
takeUntil,
|
3
|
+
map,
|
4
|
+
distinctUntilChanged,
|
5
|
+
shareReplay,
|
6
|
+
switchMap,
|
7
|
+
iif,
|
8
|
+
Subject } from 'rxjs'
|
9
|
+
import {
|
10
|
+
defineGridPlugin } from '@orbcharts/core'
|
11
|
+
import { DEFAULT_VALUE_STACK_AXIS_PARAMS } from '../defaults'
|
12
|
+
|
13
|
+
import { createBaseValueAxis } from '../../base/BaseValueAxis'
|
14
|
+
|
15
|
+
const pluginName = 'ValueStackAxis'
|
16
|
+
|
17
|
+
export const ValueStackAxis = defineGridPlugin(pluginName, DEFAULT_VALUE_STACK_AXIS_PARAMS)(({ selection, name, observer, subject }) => {
|
18
|
+
|
19
|
+
const destroy$ = new Subject()
|
20
|
+
|
21
|
+
// 將原本的value全部替換成加總後的value
|
22
|
+
const stackedData$ = observer.computedData$.pipe(
|
23
|
+
takeUntil(destroy$),
|
24
|
+
map(data => {
|
25
|
+
// 將同一group的value加總起來
|
26
|
+
const stackedValue = new Array(data[0] ? data[0].length : 0)
|
27
|
+
.fill(null)
|
28
|
+
.map((_, i) => {
|
29
|
+
return data.reduce((prev, current) => {
|
30
|
+
if (current && current[i]) {
|
31
|
+
const currentValue = current[i].value == null || current[i].visible == false
|
32
|
+
? 0
|
33
|
+
: current[i].value!
|
34
|
+
return prev + currentValue
|
35
|
+
}
|
36
|
+
return prev
|
37
|
+
}, 0)
|
38
|
+
})
|
39
|
+
// 將原本的value全部替換成加總後的value
|
40
|
+
const computedData = data.map((series, seriesIndex) => {
|
41
|
+
return series.map((d, i) => {
|
42
|
+
return {
|
43
|
+
...d,
|
44
|
+
value: stackedValue[i],
|
45
|
+
}
|
46
|
+
})
|
47
|
+
})
|
48
|
+
return computedData
|
49
|
+
}),
|
50
|
+
)
|
51
|
+
|
52
|
+
const isSeriesSeprate$ = observer.fullDataFormatter$.pipe(
|
53
|
+
takeUntil(destroy$),
|
54
|
+
map(d => d.grid.separateSeries),
|
55
|
+
distinctUntilChanged(),
|
56
|
+
shareReplay(1)
|
57
|
+
)
|
58
|
+
|
59
|
+
const unsubscribeBaseValueAxis = createBaseValueAxis(pluginName, {
|
60
|
+
selection,
|
61
|
+
computedData$: isSeriesSeprate$.pipe(
|
62
|
+
switchMap(isSeriesSeprate => {
|
63
|
+
return iif(() => isSeriesSeprate, observer.computedData$, stackedData$)
|
64
|
+
})
|
65
|
+
),
|
66
|
+
fullParams$: observer.fullParams$,
|
67
|
+
fullDataFormatter$: observer.fullDataFormatter$,
|
68
|
+
fullChartParams$: observer.fullChartParams$,
|
69
|
+
gridAxesTransform$: observer.gridAxesTransform$,
|
70
|
+
gridAxesReverseTransform$: observer.gridAxesReverseTransform$,
|
71
|
+
gridAxesSize$: observer.gridAxesSize$,
|
72
|
+
gridContainerPosition$: observer.gridContainerPosition$,
|
73
|
+
isSeriesSeprate$,
|
74
|
+
})
|
75
|
+
|
76
|
+
return () => {
|
77
|
+
destroy$.next(undefined)
|
78
|
+
unsubscribeBaseValueAxis()
|
79
|
+
}
|
80
80
|
})
|
package/src/grid/types.ts
CHANGED
@@ -1,121 +1,121 @@
|
|
1
|
-
import type { ColorType } from '@orbcharts/core'
|
2
|
-
// import type { BaseLegendParams } from '../base/BaseLegend'
|
3
|
-
|
4
|
-
// export type LineType = 'line' | 'area' | 'gradientArea'
|
5
|
-
// export type BarType = 'rect' | 'triangle'
|
6
|
-
|
7
|
-
export interface LinesParams {
|
8
|
-
lineCurve: string
|
9
|
-
lineWidth: number
|
10
|
-
// labelFn: (d: ComputedDatumSeries) => string
|
11
|
-
// labelPositionFn: (d: ComputedDatumSeries) => 'top' | 'bottom' | 'left' | 'right' | 'center'
|
12
|
-
// labelStyleFn: (d: ComputedDatumSeries) => string
|
13
|
-
// labelFontSizeFn: (d: ComputedDatumSeries) => number
|
14
|
-
// labelColorFn: (d: ComputedDatumSeries) => string
|
15
|
-
// labelPadding: number
|
16
|
-
}
|
17
|
-
|
18
|
-
export interface LineAreasParams {
|
19
|
-
lineCurve: string
|
20
|
-
linearGradientOpacity: [number, number]
|
21
|
-
}
|
22
|
-
|
23
|
-
export interface DotsParams {
|
24
|
-
radius: number
|
25
|
-
fillColorType: ColorType
|
26
|
-
strokeColorType: ColorType
|
27
|
-
strokeWidth: number
|
28
|
-
onlyShowHighlighted: boolean
|
29
|
-
}
|
30
|
-
|
31
|
-
export interface GroupAuxParams {
|
32
|
-
showLine: boolean
|
33
|
-
showLabel: boolean
|
34
|
-
lineDashArray: string
|
35
|
-
lineColorType: ColorType
|
36
|
-
labelColorType: ColorType
|
37
|
-
labelTextColorType: ColorType
|
38
|
-
labelTextFormat: string | ((text: any) => string)
|
39
|
-
labelPadding: number
|
40
|
-
}
|
41
|
-
|
42
|
-
export interface BarsParams {
|
43
|
-
// barType: BarType
|
44
|
-
barWidth: number
|
45
|
-
barPadding: number
|
46
|
-
barGroupPadding: number // 群組和群組間的間隔
|
47
|
-
barRadius: number | boolean
|
48
|
-
}
|
49
|
-
|
50
|
-
export interface BarsDivergingParams extends BarsParams {}
|
51
|
-
|
52
|
-
export interface BarStackParams {
|
53
|
-
barWidth: number
|
54
|
-
barGroupPadding: number
|
55
|
-
barRadius: number | boolean
|
56
|
-
}
|
57
|
-
|
58
|
-
export interface BarsTriangleParams {
|
59
|
-
barWidth: number
|
60
|
-
barPadding: number
|
61
|
-
barGroupPadding: number // 群組和群組間的間隔
|
62
|
-
linearGradientOpacity: [number, number]
|
63
|
-
}
|
64
|
-
|
65
|
-
export interface GroupAxisParams {
|
66
|
-
// xLabel: string
|
67
|
-
// labelAnchor: 'start' | 'end'
|
68
|
-
labelOffset: [number, number]
|
69
|
-
labelColorType: ColorType
|
70
|
-
axisLineVisible: boolean
|
71
|
-
axisLineColorType: ColorType
|
72
|
-
tickFormat: string | ((text: any) => string)
|
73
|
-
tickLineVisible: boolean
|
74
|
-
tickPadding: number
|
75
|
-
tickFullLine: boolean
|
76
|
-
tickFullLineDasharray: string
|
77
|
-
tickColorType: ColorType
|
78
|
-
// axisLineColor: string
|
79
|
-
// axisLabelColor: string
|
80
|
-
tickTextRotate: number
|
81
|
-
tickTextColorType: ColorType
|
82
|
-
}
|
83
|
-
|
84
|
-
export interface ValueAxisParams {
|
85
|
-
// xLabel: string
|
86
|
-
// labelAnchor: 'start' | 'end'
|
87
|
-
labelOffset: [number, number]
|
88
|
-
labelColorType: ColorType
|
89
|
-
axisLineVisible: boolean
|
90
|
-
axisLineColorType: ColorType
|
91
|
-
ticks: number
|
92
|
-
tickFormat: string | ((text: d3.NumberValue) => string)
|
93
|
-
tickLineVisible: boolean
|
94
|
-
tickPadding: number
|
95
|
-
tickFullLine: boolean
|
96
|
-
tickFullLineDasharray: string
|
97
|
-
tickColorType: ColorType
|
98
|
-
// axisLineColor: string
|
99
|
-
// axisLabelColor: string
|
100
|
-
tickTextRotate: number
|
101
|
-
tickTextColorType: ColorType
|
102
|
-
}
|
103
|
-
|
104
|
-
export interface ValueStackAxisParams extends ValueAxisParams {}
|
105
|
-
|
106
|
-
export interface ScalingAreaParams {
|
107
|
-
|
108
|
-
}
|
109
|
-
|
110
|
-
export interface GridLegendParams {
|
111
|
-
position: 'top' | 'bottom' | 'left' | 'right'
|
112
|
-
justify: 'start' | 'center' | 'end'
|
113
|
-
padding: number
|
114
|
-
backgroundFill: ColorType
|
115
|
-
backgroundStroke: ColorType
|
116
|
-
gap: number
|
117
|
-
listRectWidth: number
|
118
|
-
listRectHeight: number
|
119
|
-
listRectRadius: number
|
120
|
-
textColorType: ColorType
|
1
|
+
import type { ColorType } from '@orbcharts/core'
|
2
|
+
// import type { BaseLegendParams } from '../base/BaseLegend'
|
3
|
+
|
4
|
+
// export type LineType = 'line' | 'area' | 'gradientArea'
|
5
|
+
// export type BarType = 'rect' | 'triangle'
|
6
|
+
|
7
|
+
export interface LinesParams {
|
8
|
+
lineCurve: string
|
9
|
+
lineWidth: number
|
10
|
+
// labelFn: (d: ComputedDatumSeries) => string
|
11
|
+
// labelPositionFn: (d: ComputedDatumSeries) => 'top' | 'bottom' | 'left' | 'right' | 'center'
|
12
|
+
// labelStyleFn: (d: ComputedDatumSeries) => string
|
13
|
+
// labelFontSizeFn: (d: ComputedDatumSeries) => number
|
14
|
+
// labelColorFn: (d: ComputedDatumSeries) => string
|
15
|
+
// labelPadding: number
|
16
|
+
}
|
17
|
+
|
18
|
+
export interface LineAreasParams {
|
19
|
+
lineCurve: string
|
20
|
+
linearGradientOpacity: [number, number]
|
21
|
+
}
|
22
|
+
|
23
|
+
export interface DotsParams {
|
24
|
+
radius: number
|
25
|
+
fillColorType: ColorType
|
26
|
+
strokeColorType: ColorType
|
27
|
+
strokeWidth: number
|
28
|
+
onlyShowHighlighted: boolean
|
29
|
+
}
|
30
|
+
|
31
|
+
export interface GroupAuxParams {
|
32
|
+
showLine: boolean
|
33
|
+
showLabel: boolean
|
34
|
+
lineDashArray: string
|
35
|
+
lineColorType: ColorType
|
36
|
+
labelColorType: ColorType
|
37
|
+
labelTextColorType: ColorType
|
38
|
+
labelTextFormat: string | ((text: any) => string)
|
39
|
+
labelPadding: number
|
40
|
+
}
|
41
|
+
|
42
|
+
export interface BarsParams {
|
43
|
+
// barType: BarType
|
44
|
+
barWidth: number
|
45
|
+
barPadding: number
|
46
|
+
barGroupPadding: number // 群組和群組間的間隔
|
47
|
+
barRadius: number | boolean
|
48
|
+
}
|
49
|
+
|
50
|
+
export interface BarsDivergingParams extends BarsParams {}
|
51
|
+
|
52
|
+
export interface BarStackParams {
|
53
|
+
barWidth: number
|
54
|
+
barGroupPadding: number
|
55
|
+
barRadius: number | boolean
|
56
|
+
}
|
57
|
+
|
58
|
+
export interface BarsTriangleParams {
|
59
|
+
barWidth: number
|
60
|
+
barPadding: number
|
61
|
+
barGroupPadding: number // 群組和群組間的間隔
|
62
|
+
linearGradientOpacity: [number, number]
|
63
|
+
}
|
64
|
+
|
65
|
+
export interface GroupAxisParams {
|
66
|
+
// xLabel: string
|
67
|
+
// labelAnchor: 'start' | 'end'
|
68
|
+
labelOffset: [number, number]
|
69
|
+
labelColorType: ColorType
|
70
|
+
axisLineVisible: boolean
|
71
|
+
axisLineColorType: ColorType
|
72
|
+
tickFormat: string | ((text: any) => string)
|
73
|
+
tickLineVisible: boolean
|
74
|
+
tickPadding: number
|
75
|
+
tickFullLine: boolean
|
76
|
+
tickFullLineDasharray: string
|
77
|
+
tickColorType: ColorType
|
78
|
+
// axisLineColor: string
|
79
|
+
// axisLabelColor: string
|
80
|
+
tickTextRotate: number
|
81
|
+
tickTextColorType: ColorType
|
82
|
+
}
|
83
|
+
|
84
|
+
export interface ValueAxisParams {
|
85
|
+
// xLabel: string
|
86
|
+
// labelAnchor: 'start' | 'end'
|
87
|
+
labelOffset: [number, number]
|
88
|
+
labelColorType: ColorType
|
89
|
+
axisLineVisible: boolean
|
90
|
+
axisLineColorType: ColorType
|
91
|
+
ticks: number
|
92
|
+
tickFormat: string | ((text: d3.NumberValue) => string)
|
93
|
+
tickLineVisible: boolean
|
94
|
+
tickPadding: number
|
95
|
+
tickFullLine: boolean
|
96
|
+
tickFullLineDasharray: string
|
97
|
+
tickColorType: ColorType
|
98
|
+
// axisLineColor: string
|
99
|
+
// axisLabelColor: string
|
100
|
+
tickTextRotate: number
|
101
|
+
tickTextColorType: ColorType
|
102
|
+
}
|
103
|
+
|
104
|
+
export interface ValueStackAxisParams extends ValueAxisParams {}
|
105
|
+
|
106
|
+
export interface ScalingAreaParams {
|
107
|
+
|
108
|
+
}
|
109
|
+
|
110
|
+
export interface GridLegendParams {
|
111
|
+
position: 'top' | 'bottom' | 'left' | 'right'
|
112
|
+
justify: 'start' | 'center' | 'end'
|
113
|
+
padding: number
|
114
|
+
backgroundFill: ColorType
|
115
|
+
backgroundStroke: ColorType
|
116
|
+
gap: number
|
117
|
+
listRectWidth: number
|
118
|
+
listRectHeight: number
|
119
|
+
listRectRadius: number
|
120
|
+
textColorType: ColorType
|
121
121
|
}
|
package/src/index.ts
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
// export { default as container } from './noneDataPlugins/container'
|
2
|
-
// export { default as pie } from './seriesPlugins/pie'
|
3
|
-
// export { default as pieEventTexts } from './seriesPlugins/pieEventTexts'
|
4
|
-
// export { default as pieLabels } from './seriesPlugins/pieLabels'
|
5
|
-
|
6
|
-
export * from './grid'
|
7
|
-
export * from './multiGrid'
|
8
|
-
export * from './noneData'
|
9
|
-
export * from './series'
|
1
|
+
// export { default as container } from './noneDataPlugins/container'
|
2
|
+
// export { default as pie } from './seriesPlugins/pie'
|
3
|
+
// export { default as pieEventTexts } from './seriesPlugins/pieEventTexts'
|
4
|
+
// export { default as pieLabels } from './seriesPlugins/pieLabels'
|
5
|
+
|
6
|
+
export * from './grid'
|
7
|
+
export * from './multiGrid'
|
8
|
+
export * from './noneData'
|
9
|
+
export * from './series'
|
10
10
|
export * from './tree'
|