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