@orbcharts/plugins-basic 3.0.0-beta.6 → 3.0.0-beta.8
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/dist/orbcharts-plugins-basic/src/base/{BaseBarStack.d.ts → BaseStackedBar.d.ts} +4 -4
- package/dist/orbcharts-plugins-basic/src/grid/defaults.d.ts +3 -3
- package/dist/orbcharts-plugins-basic/src/grid/index.d.ts +2 -2
- package/dist/orbcharts-plugins-basic/src/grid/plugins/StackedBar.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/grid/plugins/StackedValueAxis.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/index.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/multiGrid/defaults.d.ts +4 -4
- package/dist/orbcharts-plugins-basic/src/multiGrid/index.d.ts +3 -3
- package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/MultiStackedBar.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/MultiStackedValueAxis.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/OverlappingStackedValueAxes.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/noneData/plugins/Container.d.ts +0 -1
- package/dist/orbcharts-plugins-basic/src/noneData/plugins/Tooltip.d.ts +0 -3
- package/dist/orbcharts-plugins-basic/src/relationship/defaults.d.ts +5 -0
- package/dist/orbcharts-plugins-basic/src/relationship/index.d.ts +4 -0
- package/dist/orbcharts-plugins-basic/src/relationship/plugins/ForceDirected.d.ts +3 -0
- package/dist/orbcharts-plugins-basic/src/relationship/plugins/RelationshipLegend.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/relationship/plugins/RelationshipTooltip.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/relationship/relationshipObservables.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/utils/commonUtils.d.ts +1 -1
- package/dist/orbcharts-plugins-basic/src/utils/d3Utils.d.ts +2 -2
- package/dist/orbcharts-plugins-basic/src/utils/orbchartsUtils.d.ts +1 -1
- package/dist/orbcharts-plugins-basic.es.js +8088 -7413
- package/dist/orbcharts-plugins-basic.umd.js +45 -32
- package/package.json +4 -4
- package/src/base/BaseBars.ts +4 -4
- package/src/base/BaseBarsTriangle.ts +4 -2
- package/src/base/BaseDots.ts +1 -1
- package/src/base/BaseGroupAxis.ts +47 -47
- package/src/base/BaseLegend.ts +4 -4
- package/src/base/BaseLineAreas.ts +1 -1
- package/src/base/{BaseBarStack.ts → BaseStackedBar.ts} +20 -18
- package/src/base/BaseTooltip.ts +1 -1
- package/src/base/BaseValueAxis.ts +55 -55
- package/src/grid/defaults.ts +8 -6
- package/src/grid/gridObservables.ts +32 -32
- package/src/grid/index.ts +2 -2
- package/src/grid/plugins/GridZoom.ts +6 -6
- package/src/grid/plugins/GroupAux.ts +23 -23
- package/src/grid/plugins/{BarStack.ts → StackedBar.ts} +7 -7
- package/src/grid/plugins/{ValueStackAxis.ts → StackedValueAxis.ts} +5 -5
- package/src/index.ts +1 -5
- package/src/multiGrid/defaults.ts +7 -7
- package/src/multiGrid/index.ts +3 -3
- package/src/multiGrid/plugins/MultiBars.ts +1 -1
- package/src/multiGrid/plugins/MultiBarsTriangle.ts +1 -1
- package/src/multiGrid/plugins/MultiGroupAxis.ts +1 -1
- package/src/multiGrid/plugins/{MultiBarStack.ts → MultiStackedBar.ts} +8 -8
- package/src/multiGrid/plugins/{MultiValueStackAxis.ts → MultiStackedValueAxis.ts} +3 -3
- package/src/multiGrid/plugins/MultiValueAxis.ts +1 -1
- package/src/multiGrid/plugins/{OverlappingValueStackAxes.ts → OverlappingStackedValueAxes.ts} +8 -8
- package/src/multiGrid/plugins/OverlappingValueAxes.ts +3 -3
- package/src/multiValue/defaults.ts +10 -6
- package/src/multiValue/multiValueObservables.ts +50 -11
- package/src/multiValue/plugins/ScatterBubbles.ts +6 -3
- package/src/multiValue/plugins/XYAxes.ts +36 -28
- package/src/noneData/plugins/Container.ts +23 -23
- package/src/noneData/plugins/Tooltip.ts +365 -365
- package/src/relationship/defaults.ts +113 -0
- package/src/relationship/index.ts +4 -0
- package/src/relationship/plugins/ForceDirected.ts +1148 -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 +8 -8
- package/src/series/plugins/Bubbles.ts +14 -13
- package/src/series/plugins/PieEventTexts.ts +20 -19
- package/src/tree/defaults.ts +1 -1
- package/src/utils/commonUtils.ts +5 -5
- package/src/utils/d3Utils.ts +2 -2
- package/src/utils/orbchartsUtils.ts +22 -7
- package/dist/orbcharts-plugins-basic/src/grid/plugins/BarStack.d.ts +0 -1
- package/dist/orbcharts-plugins-basic/src/grid/plugins/ValueStackAxis.d.ts +0 -1
- package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/MultiBarStack.d.ts +0 -1
- package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/MultiValueStackAxis.d.ts +0 -1
- package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/OverlappingValueStackAxes.d.ts +0 -1
- /package/dist/orbcharts-plugins-basic/src/relationship/plugins/{Relationship.d.ts → ForceDirectedBubbles.d.ts} +0 -0
- /package/src/relationship/plugins/{Relationship.ts → ForceDirectedBubbles.ts} +0 -0
@@ -0,0 +1,113 @@
|
|
1
|
+
import type {
|
2
|
+
ForceDirectedParams,
|
3
|
+
RelationshipLegendParams,
|
4
|
+
RelationshipTooltipParams
|
5
|
+
} from '../../lib/plugins-basic-types'
|
6
|
+
|
7
|
+
|
8
|
+
export const DEFAULT_FORCE_DIRECTED_PARAMS: ForceDirectedParams = {
|
9
|
+
node: {
|
10
|
+
dotRadius: 10,
|
11
|
+
dotFillColorType: 'label',
|
12
|
+
dotStrokeColorType: 'label',
|
13
|
+
dotStrokeWidth: 1,
|
14
|
+
dotStyleFn: (node) => '',
|
15
|
+
labelColorType: 'primary',
|
16
|
+
labelSizeFixed: false,
|
17
|
+
labelStyleFn: (node) => 'text-shadow:0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff'
|
18
|
+
},
|
19
|
+
edge: {
|
20
|
+
arrowColorType: 'primary',
|
21
|
+
arrowStrokeWidth: 1.5,
|
22
|
+
arrowWidth: 5,
|
23
|
+
arrowHeight: 5,
|
24
|
+
arrowStyleFn: (node) => '',
|
25
|
+
labelColorType: 'secondary',
|
26
|
+
labelSizeFixed: false,
|
27
|
+
labelStyleFn: (node) => ''
|
28
|
+
},
|
29
|
+
force: {
|
30
|
+
nodeStrength: -500, // 泡泡引力
|
31
|
+
linkDistance: 100, // 連結長度
|
32
|
+
velocityDecay: 0.1, // 衰減數
|
33
|
+
alphaDecay: 0.05
|
34
|
+
// collisionSpacing: 2 // 泡泡間距
|
35
|
+
},
|
36
|
+
zoomable: true,
|
37
|
+
transform: {
|
38
|
+
x: 0,
|
39
|
+
y: 0,
|
40
|
+
k: 1
|
41
|
+
},
|
42
|
+
scaleExtent: {
|
43
|
+
min: 0,
|
44
|
+
max: Infinity
|
45
|
+
}
|
46
|
+
}
|
47
|
+
|
48
|
+
export const DEFAULT_RELATIONSHIP_LEGEND_PARAMS: RelationshipLegendParams = {
|
49
|
+
placement: 'right-end',
|
50
|
+
padding: 28,
|
51
|
+
backgroundFill: 'none',
|
52
|
+
backgroundStroke: 'none',
|
53
|
+
gap: 10,
|
54
|
+
listRectWidth: 14,
|
55
|
+
listRectHeight: 14,
|
56
|
+
listRectRadius: 0,
|
57
|
+
textColorType: 'primary'
|
58
|
+
}
|
59
|
+
|
60
|
+
export const DEFAULT_RELATIONSHIP_TOOLTIP_PARAMS: RelationshipTooltipParams = {
|
61
|
+
backgroundColorType: 'background',
|
62
|
+
strokeColorType: 'primary',
|
63
|
+
backgroundOpacity: 0.8,
|
64
|
+
textColorType: 'primary',
|
65
|
+
offset: [20, 5],
|
66
|
+
padding: 10,
|
67
|
+
renderFn: (eventData, { styles, utils }) => {
|
68
|
+
const hasCategoryLabel = eventData.categoryLabel ? true : false
|
69
|
+
const hasDatumLabel = eventData.datum.label ? true : false
|
70
|
+
const bulletWidth = styles.textSizePx * 0.7
|
71
|
+
const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
|
72
|
+
const categorySvg = hasCategoryLabel
|
73
|
+
? `<rect width="${bulletWidth}" height="${bulletWidth}" x="${offset}" y="${offset - 1}" rx="${bulletWidth / 2}" fill="${eventData.datum.color}"></rect>
|
74
|
+
<text x="${styles.textSizePx * 1.5}" font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
|
75
|
+
<tspan>${eventData.categoryLabel}</tspan>
|
76
|
+
</text>`
|
77
|
+
: ''
|
78
|
+
const datumLabelSvg = hasDatumLabel
|
79
|
+
? `<tspan>${eventData.datum.label}</tspan> `
|
80
|
+
: ''
|
81
|
+
const datumSvg = `<text font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
|
82
|
+
${datumLabelSvg}<tspan font-weight="bold">${eventData.datum.value}</tspan>
|
83
|
+
</text>`
|
84
|
+
|
85
|
+
return `${categorySvg}
|
86
|
+
<g ${hasCategoryLabel ? `transform="translate(0, ${styles.textSizePx * 2})"` : ''}>
|
87
|
+
${datumSvg}
|
88
|
+
</g>`
|
89
|
+
},
|
90
|
+
}
|
91
|
+
DEFAULT_RELATIONSHIP_TOOLTIP_PARAMS.renderFn.toString = () => `(eventData, { styles, utils }) => {
|
92
|
+
const hasCategoryLabel = eventData.categoryLabel ? true : false
|
93
|
+
const hasDatumLabel = eventData.datum.label ? true : false
|
94
|
+
const bulletWidth = styles.textSizePx * 0.7
|
95
|
+
const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
|
96
|
+
const categorySvg = hasCategoryLabel
|
97
|
+
? \`<rect width="\${bulletWidth}" height="\${bulletWidth}" x="\${offset}" y="\${offset - 1}" rx="\${bulletWidth / 2}" fill="\${eventData.datum.color}"></rect>
|
98
|
+
<text x="\${styles.textSizePx * 1.5}" font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
|
99
|
+
<tspan>\${eventData.categoryLabel}</tspan>
|
100
|
+
</text>\`
|
101
|
+
: ''
|
102
|
+
const datumLabelSvg = hasDatumLabel
|
103
|
+
? \`<tspan>\${eventData.datum.label}</tspan> \`
|
104
|
+
: ''
|
105
|
+
const datumSvg = \`<text font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
|
106
|
+
\${datumLabelSvg}<tspan font-weight="bold">\${eventData.datum.value}</tspan>
|
107
|
+
</text>\`
|
108
|
+
|
109
|
+
return \`\${categorySvg}
|
110
|
+
<g \${hasCategoryLabel ? \`transform="translate(0, \${styles.textSizePx * 2})"\` : ''}>
|
111
|
+
\${datumSvg}
|
112
|
+
</g>\`
|
113
|
+
}`
|