@orbcharts/plugins-basic 3.0.0-alpha.68 → 3.0.0-alpha.69
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 +3436 -3358
- package/dist/orbcharts-plugins-basic.umd.js +14 -13
- package/dist/src/utils/d3Graphics.d.ts +10 -0
- package/package.json +42 -42
- package/src/base/BaseBarStack.ts +779 -779
- package/src/base/BaseBars.ts +764 -764
- package/src/base/BaseBarsTriangle.ts +672 -672
- package/src/base/BaseDots.ts +513 -513
- package/src/base/BaseGroupAxis.ts +675 -652
- package/src/base/BaseLegend.ts +642 -642
- package/src/base/BaseLineAreas.ts +628 -628
- package/src/base/BaseLines.ts +704 -704
- package/src/base/BaseValueAxis.ts +578 -578
- package/src/base/types.ts +2 -2
- package/src/grid/defaults.ts +128 -128
- package/src/grid/gridObservables.ts +543 -543
- package/src/grid/index.ts +15 -15
- package/src/grid/plugins/BarStack.ts +43 -43
- package/src/grid/plugins/Bars.ts +44 -44
- package/src/grid/plugins/BarsPN.ts +41 -41
- package/src/grid/plugins/BarsTriangle.ts +42 -42
- package/src/grid/plugins/Dots.ts +37 -37
- package/src/grid/plugins/GridLegend.ts +59 -59
- package/src/grid/plugins/GroupAux.ts +1014 -991
- package/src/grid/plugins/GroupAxis.ts +36 -36
- package/src/grid/plugins/LineAreas.ts +40 -40
- package/src/grid/plugins/Lines.ts +40 -40
- package/src/grid/plugins/ScalingArea.ts +174 -174
- package/src/grid/plugins/ValueAxis.ts +36 -36
- package/src/grid/plugins/ValueStackAxis.ts +38 -38
- package/src/grid/types.ts +123 -123
- package/src/index.ts +9 -9
- package/src/multiGrid/defaults.ts +158 -158
- package/src/multiGrid/index.ts +13 -13
- package/src/multiGrid/multiGridObservables.ts +49 -49
- package/src/multiGrid/plugins/MultiBarStack.ts +78 -78
- package/src/multiGrid/plugins/MultiBars.ts +77 -77
- package/src/multiGrid/plugins/MultiBarsTriangle.ts +77 -77
- package/src/multiGrid/plugins/MultiDots.ts +65 -65
- package/src/multiGrid/plugins/MultiGridLegend.ts +89 -89
- package/src/multiGrid/plugins/MultiGroupAxis.ts +70 -70
- package/src/multiGrid/plugins/MultiLineAreas.ts +77 -77
- package/src/multiGrid/plugins/MultiLines.ts +77 -77
- package/src/multiGrid/plugins/MultiValueAxis.ts +69 -69
- package/src/multiGrid/plugins/MultiValueStackAxis.ts +69 -69
- package/src/multiGrid/plugins/OverlappingValueAxes.ts +170 -170
- package/src/multiGrid/plugins/OverlappingValueStackAxes.ts +169 -169
- package/src/multiGrid/types.ts +72 -72
- package/src/noneData/defaults.ts +102 -102
- package/src/noneData/index.ts +3 -3
- package/src/noneData/plugins/Container.ts +10 -10
- package/src/noneData/plugins/Tooltip.ts +327 -327
- package/src/noneData/types.ts +26 -26
- package/src/series/defaults.ts +149 -149
- package/src/series/index.ts +9 -9
- package/src/series/plugins/Bubbles.ts +545 -545
- package/src/series/plugins/Pie.ts +584 -584
- package/src/series/plugins/PieEventTexts.ts +262 -262
- package/src/series/plugins/PieLabels.ts +604 -598
- package/src/series/plugins/Rose.ts +481 -481
- package/src/series/plugins/RoseLabels.ts +571 -565
- package/src/series/plugins/SeriesLegend.ts +59 -59
- package/src/series/seriesObservables.ts +145 -145
- package/src/series/seriesUtils.ts +51 -51
- package/src/series/types.ts +87 -87
- package/src/tree/defaults.ts +23 -23
- 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 +174 -124
- package/src/utils/d3Utils.ts +73 -73
- package/src/utils/observables.ts +14 -14
- package/src/utils/orbchartsUtils.ts +100 -100
- package/tsconfig.base.json +13 -13
- package/tsconfig.json +2 -2
- package/vite.config.js +22 -22
package/src/multiGrid/index.ts
CHANGED
@@ -1,14 +1,14 @@
|
|
1
|
-
export * from './defaults'
|
2
|
-
export * from './types'
|
3
|
-
export { MultiGridLegend } from './plugins/MultiGridLegend'
|
4
|
-
export { MultiBars } from './plugins/MultiBars'
|
5
|
-
export { MultiBarStack } from './plugins/MultiBarStack'
|
6
|
-
export { MultiBarsTriangle } from './plugins/MultiBarsTriangle'
|
7
|
-
export { MultiLines } from './plugins/MultiLines'
|
8
|
-
export { MultiLineAreas } from './plugins/MultiLineAreas'
|
9
|
-
export { MultiDots } from './plugins/MultiDots'
|
10
|
-
export { MultiGroupAxis } from './plugins/MultiGroupAxis'
|
11
|
-
export { MultiValueAxis } from './plugins/MultiValueAxis'
|
12
|
-
export { MultiValueStackAxis } from './plugins/MultiValueStackAxis'
|
13
|
-
export { OverlappingValueAxes } from './plugins/OverlappingValueAxes'
|
1
|
+
export * from './defaults'
|
2
|
+
export * from './types'
|
3
|
+
export { MultiGridLegend } from './plugins/MultiGridLegend'
|
4
|
+
export { MultiBars } from './plugins/MultiBars'
|
5
|
+
export { MultiBarStack } from './plugins/MultiBarStack'
|
6
|
+
export { MultiBarsTriangle } from './plugins/MultiBarsTriangle'
|
7
|
+
export { MultiLines } from './plugins/MultiLines'
|
8
|
+
export { MultiLineAreas } from './plugins/MultiLineAreas'
|
9
|
+
export { MultiDots } from './plugins/MultiDots'
|
10
|
+
export { MultiGroupAxis } from './plugins/MultiGroupAxis'
|
11
|
+
export { MultiValueAxis } from './plugins/MultiValueAxis'
|
12
|
+
export { MultiValueStackAxis } from './plugins/MultiValueStackAxis'
|
13
|
+
export { OverlappingValueAxes } from './plugins/OverlappingValueAxes'
|
14
14
|
export { OverlappingValueStackAxes } from './plugins/OverlappingValueStackAxes'
|
@@ -1,49 +1,49 @@
|
|
1
|
-
import type { Observable } from 'rxjs'
|
2
|
-
import {
|
3
|
-
Subject,
|
4
|
-
takeUntil,
|
5
|
-
of,
|
6
|
-
map,
|
7
|
-
reduce,
|
8
|
-
switchMap,
|
9
|
-
combineLatest,
|
10
|
-
distinctUntilChanged,
|
11
|
-
shareReplay
|
12
|
-
} from 'rxjs'
|
13
|
-
import type {
|
14
|
-
ContextObserverMultiGrid,
|
15
|
-
ComputedDataGrid,
|
16
|
-
DataFormatterGrid,
|
17
|
-
ContextObserverGridDetail,
|
18
|
-
ContextObserverMultiGridDetail } from '@orbcharts/core'
|
19
|
-
|
20
|
-
// 可設定多個gridIndex的params
|
21
|
-
interface MultiGridPluginParams {
|
22
|
-
gridIndexes: number[] | 'all'
|
23
|
-
}
|
24
|
-
|
25
|
-
// 對應grid資料的plugin所需Observable(必須有gridIndexes)
|
26
|
-
export const multiGridPluginDetailObservables = (observer: ContextObserverMultiGrid<MultiGridPluginParams>): Observable<ContextObserverMultiGridDetail[]> => {
|
27
|
-
const gridIndexes$ = observer.fullParams$.pipe(
|
28
|
-
map(fullParams => fullParams.gridIndexes),
|
29
|
-
distinctUntilChanged(),
|
30
|
-
shareReplay(1)
|
31
|
-
)
|
32
|
-
|
33
|
-
return combineLatest({
|
34
|
-
multiGridEachDetail: observer.multiGridEachDetail$,
|
35
|
-
gridIndexes: gridIndexes$,
|
36
|
-
}).pipe(
|
37
|
-
map(data => {
|
38
|
-
// 對應所有grid
|
39
|
-
if (data.gridIndexes === 'all') {
|
40
|
-
return data.multiGridEachDetail
|
41
|
-
}
|
42
|
-
// 自訂對應grid
|
43
|
-
return data.gridIndexes.map(gridIndex => {
|
44
|
-
return data.multiGridEachDetail[gridIndex] ?? data.multiGridEachDetail[0]
|
45
|
-
})
|
46
|
-
})
|
47
|
-
)
|
48
|
-
}
|
49
|
-
|
1
|
+
import type { Observable } from 'rxjs'
|
2
|
+
import {
|
3
|
+
Subject,
|
4
|
+
takeUntil,
|
5
|
+
of,
|
6
|
+
map,
|
7
|
+
reduce,
|
8
|
+
switchMap,
|
9
|
+
combineLatest,
|
10
|
+
distinctUntilChanged,
|
11
|
+
shareReplay
|
12
|
+
} from 'rxjs'
|
13
|
+
import type {
|
14
|
+
ContextObserverMultiGrid,
|
15
|
+
ComputedDataGrid,
|
16
|
+
DataFormatterGrid,
|
17
|
+
ContextObserverGridDetail,
|
18
|
+
ContextObserverMultiGridDetail } from '@orbcharts/core'
|
19
|
+
|
20
|
+
// 可設定多個gridIndex的params
|
21
|
+
interface MultiGridPluginParams {
|
22
|
+
gridIndexes: number[] | 'all'
|
23
|
+
}
|
24
|
+
|
25
|
+
// 對應grid資料的plugin所需Observable(必須有gridIndexes)
|
26
|
+
export const multiGridPluginDetailObservables = (observer: ContextObserverMultiGrid<MultiGridPluginParams>): Observable<ContextObserverMultiGridDetail[]> => {
|
27
|
+
const gridIndexes$ = observer.fullParams$.pipe(
|
28
|
+
map(fullParams => fullParams.gridIndexes),
|
29
|
+
distinctUntilChanged(),
|
30
|
+
shareReplay(1)
|
31
|
+
)
|
32
|
+
|
33
|
+
return combineLatest({
|
34
|
+
multiGridEachDetail: observer.multiGridEachDetail$,
|
35
|
+
gridIndexes: gridIndexes$,
|
36
|
+
}).pipe(
|
37
|
+
map(data => {
|
38
|
+
// 對應所有grid
|
39
|
+
if (data.gridIndexes === 'all') {
|
40
|
+
return data.multiGridEachDetail
|
41
|
+
}
|
42
|
+
// 自訂對應grid
|
43
|
+
return data.gridIndexes.map(gridIndex => {
|
44
|
+
return data.multiGridEachDetail[gridIndex] ?? data.multiGridEachDetail[0]
|
45
|
+
})
|
46
|
+
})
|
47
|
+
)
|
48
|
+
}
|
49
|
+
|
@@ -1,78 +1,78 @@
|
|
1
|
-
import * as d3 from 'd3'
|
2
|
-
import {
|
3
|
-
Subject,
|
4
|
-
map,
|
5
|
-
distinctUntilChanged,
|
6
|
-
shareReplay,
|
7
|
-
takeUntil
|
8
|
-
} from 'rxjs'
|
9
|
-
import {
|
10
|
-
defineMultiGridPlugin } from '@orbcharts/core'
|
11
|
-
import { DEFAULT_MULTI_BAR_STACK_PARAMS } from '../defaults'
|
12
|
-
import { createBaseBarStack } from '../../base/BaseBarStack'
|
13
|
-
import { multiGridPluginDetailObservables } from '../multiGridObservables'
|
14
|
-
import { getClassName, getUniID } from '../../utils/orbchartsUtils'
|
15
|
-
|
16
|
-
const pluginName = 'MultiBarStack'
|
17
|
-
|
18
|
-
const gridClassName = getClassName(pluginName, 'grid')
|
19
|
-
|
20
|
-
export const MultiBarStack = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_BAR_STACK_PARAMS)(({ selection, name, subject, observer }) => {
|
21
|
-
const destroy$ = new Subject()
|
22
|
-
|
23
|
-
const unsubscribeFnArr: (() => void)[] = []
|
24
|
-
|
25
|
-
const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
|
26
|
-
|
27
|
-
multiGridPluginDetail$
|
28
|
-
.pipe(
|
29
|
-
takeUntil(destroy$)
|
30
|
-
)
|
31
|
-
.subscribe(data => {
|
32
|
-
// 每次重新計算時,清除之前的訂閱
|
33
|
-
unsubscribeFnArr.forEach(fn => fn())
|
34
|
-
|
35
|
-
selection.selectAll(`g.${gridClassName}`)
|
36
|
-
.data(data)
|
37
|
-
.join('g')
|
38
|
-
.attr('class', gridClassName)
|
39
|
-
.each((d, i, g) => {
|
40
|
-
|
41
|
-
const gridSelection = d3.select(g[i])
|
42
|
-
|
43
|
-
const isSeriesSeprate$ = d.dataFormatter$.pipe(
|
44
|
-
takeUntil(destroy$),
|
45
|
-
map(d => d.grid.separateSeries),
|
46
|
-
distinctUntilChanged(),
|
47
|
-
shareReplay(1)
|
48
|
-
)
|
49
|
-
|
50
|
-
unsubscribeFnArr[i] = createBaseBarStack(pluginName, {
|
51
|
-
selection: gridSelection,
|
52
|
-
computedData$: d.computedData$,
|
53
|
-
visibleComputedData$: d.visibleComputedData$,
|
54
|
-
computedLayoutData$: d.computedLayoutData$,
|
55
|
-
visibleComputedLayoutData$: d.visibleComputedLayoutData$,
|
56
|
-
seriesLabels$: d.seriesLabels$,
|
57
|
-
SeriesDataMap$: d.SeriesDataMap$,
|
58
|
-
GroupDataMap$: d.GroupDataMap$,
|
59
|
-
fullParams$: observer.fullParams$,
|
60
|
-
fullDataFormatter$: d.dataFormatter$,
|
61
|
-
fullChartParams$: observer.fullChartParams$,
|
62
|
-
gridAxesTransform$: d.gridAxesTransform$,
|
63
|
-
gridGraphicTransform$: d.gridGraphicTransform$,
|
64
|
-
gridGraphicReverseScale$: d.gridGraphicReverseScale$,
|
65
|
-
gridAxesSize$: d.gridAxesSize$,
|
66
|
-
gridHighlight$: d.gridHighlight$,
|
67
|
-
gridContainerPosition$: d.gridContainerPosition$,
|
68
|
-
isSeriesSeprate$,
|
69
|
-
event$: subject.event$ as Subject<any>,
|
70
|
-
})
|
71
|
-
})
|
72
|
-
})
|
73
|
-
|
74
|
-
return () => {
|
75
|
-
destroy$.next(undefined)
|
76
|
-
unsubscribeFnArr.forEach(fn => fn())
|
77
|
-
}
|
78
|
-
})
|
1
|
+
import * as d3 from 'd3'
|
2
|
+
import {
|
3
|
+
Subject,
|
4
|
+
map,
|
5
|
+
distinctUntilChanged,
|
6
|
+
shareReplay,
|
7
|
+
takeUntil
|
8
|
+
} from 'rxjs'
|
9
|
+
import {
|
10
|
+
defineMultiGridPlugin } from '@orbcharts/core'
|
11
|
+
import { DEFAULT_MULTI_BAR_STACK_PARAMS } from '../defaults'
|
12
|
+
import { createBaseBarStack } from '../../base/BaseBarStack'
|
13
|
+
import { multiGridPluginDetailObservables } from '../multiGridObservables'
|
14
|
+
import { getClassName, getUniID } from '../../utils/orbchartsUtils'
|
15
|
+
|
16
|
+
const pluginName = 'MultiBarStack'
|
17
|
+
|
18
|
+
const gridClassName = getClassName(pluginName, 'grid')
|
19
|
+
|
20
|
+
export const MultiBarStack = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_BAR_STACK_PARAMS)(({ selection, name, subject, observer }) => {
|
21
|
+
const destroy$ = new Subject()
|
22
|
+
|
23
|
+
const unsubscribeFnArr: (() => void)[] = []
|
24
|
+
|
25
|
+
const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
|
26
|
+
|
27
|
+
multiGridPluginDetail$
|
28
|
+
.pipe(
|
29
|
+
takeUntil(destroy$)
|
30
|
+
)
|
31
|
+
.subscribe(data => {
|
32
|
+
// 每次重新計算時,清除之前的訂閱
|
33
|
+
unsubscribeFnArr.forEach(fn => fn())
|
34
|
+
|
35
|
+
selection.selectAll(`g.${gridClassName}`)
|
36
|
+
.data(data)
|
37
|
+
.join('g')
|
38
|
+
.attr('class', gridClassName)
|
39
|
+
.each((d, i, g) => {
|
40
|
+
|
41
|
+
const gridSelection = d3.select(g[i])
|
42
|
+
|
43
|
+
const isSeriesSeprate$ = d.dataFormatter$.pipe(
|
44
|
+
takeUntil(destroy$),
|
45
|
+
map(d => d.grid.separateSeries),
|
46
|
+
distinctUntilChanged(),
|
47
|
+
shareReplay(1)
|
48
|
+
)
|
49
|
+
|
50
|
+
unsubscribeFnArr[i] = createBaseBarStack(pluginName, {
|
51
|
+
selection: gridSelection,
|
52
|
+
computedData$: d.computedData$,
|
53
|
+
visibleComputedData$: d.visibleComputedData$,
|
54
|
+
computedLayoutData$: d.computedLayoutData$,
|
55
|
+
visibleComputedLayoutData$: d.visibleComputedLayoutData$,
|
56
|
+
seriesLabels$: d.seriesLabels$,
|
57
|
+
SeriesDataMap$: d.SeriesDataMap$,
|
58
|
+
GroupDataMap$: d.GroupDataMap$,
|
59
|
+
fullParams$: observer.fullParams$,
|
60
|
+
fullDataFormatter$: d.dataFormatter$,
|
61
|
+
fullChartParams$: observer.fullChartParams$,
|
62
|
+
gridAxesTransform$: d.gridAxesTransform$,
|
63
|
+
gridGraphicTransform$: d.gridGraphicTransform$,
|
64
|
+
gridGraphicReverseScale$: d.gridGraphicReverseScale$,
|
65
|
+
gridAxesSize$: d.gridAxesSize$,
|
66
|
+
gridHighlight$: d.gridHighlight$,
|
67
|
+
gridContainerPosition$: d.gridContainerPosition$,
|
68
|
+
isSeriesSeprate$,
|
69
|
+
event$: subject.event$ as Subject<any>,
|
70
|
+
})
|
71
|
+
})
|
72
|
+
})
|
73
|
+
|
74
|
+
return () => {
|
75
|
+
destroy$.next(undefined)
|
76
|
+
unsubscribeFnArr.forEach(fn => fn())
|
77
|
+
}
|
78
|
+
})
|
@@ -1,77 +1,77 @@
|
|
1
|
-
import * as d3 from 'd3'
|
2
|
-
import {
|
3
|
-
Subject,
|
4
|
-
map,
|
5
|
-
distinctUntilChanged,
|
6
|
-
shareReplay,
|
7
|
-
takeUntil
|
8
|
-
} from 'rxjs'
|
9
|
-
import {
|
10
|
-
defineMultiGridPlugin } from '@orbcharts/core'
|
11
|
-
import { DEFAULT_MULTI_BARS_PARAMS } from '../defaults'
|
12
|
-
import { createBaseBars } from '../../base/BaseBars'
|
13
|
-
import { multiGridPluginDetailObservables } from '../multiGridObservables'
|
14
|
-
import { getClassName, getUniID } from '../../utils/orbchartsUtils'
|
15
|
-
|
16
|
-
const pluginName = 'MultiBars'
|
17
|
-
|
18
|
-
const gridClassName = getClassName(pluginName, 'grid')
|
19
|
-
|
20
|
-
export const MultiBars = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_BARS_PARAMS)(({ selection, name, subject, observer }) => {
|
21
|
-
const destroy$ = new Subject()
|
22
|
-
|
23
|
-
const unsubscribeFnArr: (() => void)[] = []
|
24
|
-
|
25
|
-
const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
|
26
|
-
|
27
|
-
multiGridPluginDetail$
|
28
|
-
.pipe(
|
29
|
-
takeUntil(destroy$)
|
30
|
-
)
|
31
|
-
.subscribe(data => {
|
32
|
-
// 每次重新計算時,清除之前的訂閱
|
33
|
-
unsubscribeFnArr.forEach(fn => fn())
|
34
|
-
|
35
|
-
selection.selectAll(`g.${gridClassName}`)
|
36
|
-
.data(data)
|
37
|
-
.join('g')
|
38
|
-
.attr('class', gridClassName)
|
39
|
-
.each((d, i, g) => {
|
40
|
-
|
41
|
-
const gridSelection = d3.select(g[i])
|
42
|
-
|
43
|
-
const isSeriesSeprate$ = d.dataFormatter$.pipe(
|
44
|
-
takeUntil(destroy$),
|
45
|
-
map(d => d.grid.separateSeries),
|
46
|
-
distinctUntilChanged(),
|
47
|
-
shareReplay(1)
|
48
|
-
)
|
49
|
-
|
50
|
-
unsubscribeFnArr[i] = createBaseBars(pluginName, {
|
51
|
-
selection: gridSelection,
|
52
|
-
computedData$: d.computedData$,
|
53
|
-
visibleComputedData$: d.visibleComputedData$,
|
54
|
-
computedLayoutData$: d.computedLayoutData$,
|
55
|
-
visibleComputedLayoutData$: d.visibleComputedLayoutData$,
|
56
|
-
seriesLabels$: d.seriesLabels$,
|
57
|
-
SeriesDataMap$: d.SeriesDataMap$,
|
58
|
-
GroupDataMap$: d.GroupDataMap$,
|
59
|
-
fullParams$: observer.fullParams$,
|
60
|
-
fullChartParams$: observer.fullChartParams$,
|
61
|
-
gridAxesTransform$: d.gridAxesTransform$,
|
62
|
-
gridGraphicTransform$: d.gridGraphicTransform$,
|
63
|
-
gridGraphicReverseScale$: d.gridGraphicReverseScale$,
|
64
|
-
gridAxesSize$: d.gridAxesSize$,
|
65
|
-
gridHighlight$: d.gridHighlight$,
|
66
|
-
gridContainerPosition$: d.gridContainerPosition$,
|
67
|
-
isSeriesSeprate$,
|
68
|
-
event$: subject.event$ as Subject<any>,
|
69
|
-
})
|
70
|
-
})
|
71
|
-
})
|
72
|
-
|
73
|
-
return () => {
|
74
|
-
destroy$.next(undefined)
|
75
|
-
unsubscribeFnArr.forEach(fn => fn())
|
76
|
-
}
|
77
|
-
})
|
1
|
+
import * as d3 from 'd3'
|
2
|
+
import {
|
3
|
+
Subject,
|
4
|
+
map,
|
5
|
+
distinctUntilChanged,
|
6
|
+
shareReplay,
|
7
|
+
takeUntil
|
8
|
+
} from 'rxjs'
|
9
|
+
import {
|
10
|
+
defineMultiGridPlugin } from '@orbcharts/core'
|
11
|
+
import { DEFAULT_MULTI_BARS_PARAMS } from '../defaults'
|
12
|
+
import { createBaseBars } from '../../base/BaseBars'
|
13
|
+
import { multiGridPluginDetailObservables } from '../multiGridObservables'
|
14
|
+
import { getClassName, getUniID } from '../../utils/orbchartsUtils'
|
15
|
+
|
16
|
+
const pluginName = 'MultiBars'
|
17
|
+
|
18
|
+
const gridClassName = getClassName(pluginName, 'grid')
|
19
|
+
|
20
|
+
export const MultiBars = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_BARS_PARAMS)(({ selection, name, subject, observer }) => {
|
21
|
+
const destroy$ = new Subject()
|
22
|
+
|
23
|
+
const unsubscribeFnArr: (() => void)[] = []
|
24
|
+
|
25
|
+
const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
|
26
|
+
|
27
|
+
multiGridPluginDetail$
|
28
|
+
.pipe(
|
29
|
+
takeUntil(destroy$)
|
30
|
+
)
|
31
|
+
.subscribe(data => {
|
32
|
+
// 每次重新計算時,清除之前的訂閱
|
33
|
+
unsubscribeFnArr.forEach(fn => fn())
|
34
|
+
|
35
|
+
selection.selectAll(`g.${gridClassName}`)
|
36
|
+
.data(data)
|
37
|
+
.join('g')
|
38
|
+
.attr('class', gridClassName)
|
39
|
+
.each((d, i, g) => {
|
40
|
+
|
41
|
+
const gridSelection = d3.select(g[i])
|
42
|
+
|
43
|
+
const isSeriesSeprate$ = d.dataFormatter$.pipe(
|
44
|
+
takeUntil(destroy$),
|
45
|
+
map(d => d.grid.separateSeries),
|
46
|
+
distinctUntilChanged(),
|
47
|
+
shareReplay(1)
|
48
|
+
)
|
49
|
+
|
50
|
+
unsubscribeFnArr[i] = createBaseBars(pluginName, {
|
51
|
+
selection: gridSelection,
|
52
|
+
computedData$: d.computedData$,
|
53
|
+
visibleComputedData$: d.visibleComputedData$,
|
54
|
+
computedLayoutData$: d.computedLayoutData$,
|
55
|
+
visibleComputedLayoutData$: d.visibleComputedLayoutData$,
|
56
|
+
seriesLabels$: d.seriesLabels$,
|
57
|
+
SeriesDataMap$: d.SeriesDataMap$,
|
58
|
+
GroupDataMap$: d.GroupDataMap$,
|
59
|
+
fullParams$: observer.fullParams$,
|
60
|
+
fullChartParams$: observer.fullChartParams$,
|
61
|
+
gridAxesTransform$: d.gridAxesTransform$,
|
62
|
+
gridGraphicTransform$: d.gridGraphicTransform$,
|
63
|
+
gridGraphicReverseScale$: d.gridGraphicReverseScale$,
|
64
|
+
gridAxesSize$: d.gridAxesSize$,
|
65
|
+
gridHighlight$: d.gridHighlight$,
|
66
|
+
gridContainerPosition$: d.gridContainerPosition$,
|
67
|
+
isSeriesSeprate$,
|
68
|
+
event$: subject.event$ as Subject<any>,
|
69
|
+
})
|
70
|
+
})
|
71
|
+
})
|
72
|
+
|
73
|
+
return () => {
|
74
|
+
destroy$.next(undefined)
|
75
|
+
unsubscribeFnArr.forEach(fn => fn())
|
76
|
+
}
|
77
|
+
})
|
@@ -1,77 +1,77 @@
|
|
1
|
-
import * as d3 from 'd3'
|
2
|
-
import {
|
3
|
-
Subject,
|
4
|
-
map,
|
5
|
-
distinctUntilChanged,
|
6
|
-
shareReplay,
|
7
|
-
takeUntil
|
8
|
-
} from 'rxjs'
|
9
|
-
import {
|
10
|
-
defineMultiGridPlugin } from '@orbcharts/core'
|
11
|
-
import { DEFAULT_MULTI_BARS_TRIANGLE_PARAMS } from '../defaults'
|
12
|
-
import { createBaseBarsTriangle } from '../../base/BaseBarsTriangle'
|
13
|
-
import { multiGridPluginDetailObservables } from '../multiGridObservables'
|
14
|
-
import { getClassName, getUniID } from '../../utils/orbchartsUtils'
|
15
|
-
|
16
|
-
const pluginName = 'MultiBarsTriangle'
|
17
|
-
|
18
|
-
const gridClassName = getClassName(pluginName, 'grid')
|
19
|
-
|
20
|
-
export const MultiBarsTriangle = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_BARS_TRIANGLE_PARAMS)(({ selection, name, subject, observer }) => {
|
21
|
-
const destroy$ = new Subject()
|
22
|
-
|
23
|
-
const unsubscribeFnArr: (() => void)[] = []
|
24
|
-
|
25
|
-
const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
|
26
|
-
|
27
|
-
multiGridPluginDetail$
|
28
|
-
.pipe(
|
29
|
-
takeUntil(destroy$)
|
30
|
-
)
|
31
|
-
.subscribe(data => {
|
32
|
-
// 每次重新計算時,清除之前的訂閱
|
33
|
-
unsubscribeFnArr.forEach(fn => fn())
|
34
|
-
|
35
|
-
selection.selectAll(`g.${gridClassName}`)
|
36
|
-
.data(data)
|
37
|
-
.join('g')
|
38
|
-
.attr('class', gridClassName)
|
39
|
-
.each((d, i, g) => {
|
40
|
-
|
41
|
-
const gridSelection = d3.select(g[i])
|
42
|
-
|
43
|
-
const isSeriesSeprate$ = d.dataFormatter$.pipe(
|
44
|
-
takeUntil(destroy$),
|
45
|
-
map(d => d.grid.separateSeries),
|
46
|
-
distinctUntilChanged(),
|
47
|
-
shareReplay(1)
|
48
|
-
)
|
49
|
-
|
50
|
-
unsubscribeFnArr[i] = createBaseBarsTriangle(pluginName, {
|
51
|
-
selection: gridSelection,
|
52
|
-
computedData$: d.computedData$,
|
53
|
-
visibleComputedData$: d.visibleComputedData$,
|
54
|
-
computedLayoutData$: d.computedLayoutData$,
|
55
|
-
visibleComputedLayoutData$: d.visibleComputedLayoutData$,
|
56
|
-
seriesLabels$: d.seriesLabels$,
|
57
|
-
SeriesDataMap$: d.SeriesDataMap$,
|
58
|
-
GroupDataMap$: d.GroupDataMap$,
|
59
|
-
fullParams$: observer.fullParams$,
|
60
|
-
fullChartParams$: observer.fullChartParams$,
|
61
|
-
fullDataFormatter$: d.dataFormatter$,
|
62
|
-
gridAxesTransform$: d.gridAxesTransform$,
|
63
|
-
gridGraphicTransform$: d.gridGraphicTransform$,
|
64
|
-
gridAxesSize$: d.gridAxesSize$,
|
65
|
-
gridHighlight$: d.gridHighlight$,
|
66
|
-
gridContainerPosition$: d.gridContainerPosition$,
|
67
|
-
isSeriesSeprate$: isSeriesSeprate$,
|
68
|
-
event$: subject.event$ as Subject<any>,
|
69
|
-
})
|
70
|
-
})
|
71
|
-
})
|
72
|
-
|
73
|
-
return () => {
|
74
|
-
destroy$.next(undefined)
|
75
|
-
unsubscribeFnArr.forEach(fn => fn())
|
76
|
-
}
|
77
|
-
})
|
1
|
+
import * as d3 from 'd3'
|
2
|
+
import {
|
3
|
+
Subject,
|
4
|
+
map,
|
5
|
+
distinctUntilChanged,
|
6
|
+
shareReplay,
|
7
|
+
takeUntil
|
8
|
+
} from 'rxjs'
|
9
|
+
import {
|
10
|
+
defineMultiGridPlugin } from '@orbcharts/core'
|
11
|
+
import { DEFAULT_MULTI_BARS_TRIANGLE_PARAMS } from '../defaults'
|
12
|
+
import { createBaseBarsTriangle } from '../../base/BaseBarsTriangle'
|
13
|
+
import { multiGridPluginDetailObservables } from '../multiGridObservables'
|
14
|
+
import { getClassName, getUniID } from '../../utils/orbchartsUtils'
|
15
|
+
|
16
|
+
const pluginName = 'MultiBarsTriangle'
|
17
|
+
|
18
|
+
const gridClassName = getClassName(pluginName, 'grid')
|
19
|
+
|
20
|
+
export const MultiBarsTriangle = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_BARS_TRIANGLE_PARAMS)(({ selection, name, subject, observer }) => {
|
21
|
+
const destroy$ = new Subject()
|
22
|
+
|
23
|
+
const unsubscribeFnArr: (() => void)[] = []
|
24
|
+
|
25
|
+
const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
|
26
|
+
|
27
|
+
multiGridPluginDetail$
|
28
|
+
.pipe(
|
29
|
+
takeUntil(destroy$)
|
30
|
+
)
|
31
|
+
.subscribe(data => {
|
32
|
+
// 每次重新計算時,清除之前的訂閱
|
33
|
+
unsubscribeFnArr.forEach(fn => fn())
|
34
|
+
|
35
|
+
selection.selectAll(`g.${gridClassName}`)
|
36
|
+
.data(data)
|
37
|
+
.join('g')
|
38
|
+
.attr('class', gridClassName)
|
39
|
+
.each((d, i, g) => {
|
40
|
+
|
41
|
+
const gridSelection = d3.select(g[i])
|
42
|
+
|
43
|
+
const isSeriesSeprate$ = d.dataFormatter$.pipe(
|
44
|
+
takeUntil(destroy$),
|
45
|
+
map(d => d.grid.separateSeries),
|
46
|
+
distinctUntilChanged(),
|
47
|
+
shareReplay(1)
|
48
|
+
)
|
49
|
+
|
50
|
+
unsubscribeFnArr[i] = createBaseBarsTriangle(pluginName, {
|
51
|
+
selection: gridSelection,
|
52
|
+
computedData$: d.computedData$,
|
53
|
+
visibleComputedData$: d.visibleComputedData$,
|
54
|
+
computedLayoutData$: d.computedLayoutData$,
|
55
|
+
visibleComputedLayoutData$: d.visibleComputedLayoutData$,
|
56
|
+
seriesLabels$: d.seriesLabels$,
|
57
|
+
SeriesDataMap$: d.SeriesDataMap$,
|
58
|
+
GroupDataMap$: d.GroupDataMap$,
|
59
|
+
fullParams$: observer.fullParams$,
|
60
|
+
fullChartParams$: observer.fullChartParams$,
|
61
|
+
fullDataFormatter$: d.dataFormatter$,
|
62
|
+
gridAxesTransform$: d.gridAxesTransform$,
|
63
|
+
gridGraphicTransform$: d.gridGraphicTransform$,
|
64
|
+
gridAxesSize$: d.gridAxesSize$,
|
65
|
+
gridHighlight$: d.gridHighlight$,
|
66
|
+
gridContainerPosition$: d.gridContainerPosition$,
|
67
|
+
isSeriesSeprate$: isSeriesSeprate$,
|
68
|
+
event$: subject.event$ as Subject<any>,
|
69
|
+
})
|
70
|
+
})
|
71
|
+
})
|
72
|
+
|
73
|
+
return () => {
|
74
|
+
destroy$.next(undefined)
|
75
|
+
unsubscribeFnArr.forEach(fn => fn())
|
76
|
+
}
|
77
|
+
})
|