@orbcharts/plugins-basic 3.0.0-beta.4 → 3.0.0-beta.5
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/{src → orbcharts-plugins-basic/src}/base/BaseBarStack.d.ts +2 -2
- package/dist/{src → orbcharts-plugins-basic/src}/base/BaseBars.d.ts +2 -2
- package/dist/{src → orbcharts-plugins-basic/src}/base/BaseBarsTriangle.d.ts +2 -2
- package/dist/{src → orbcharts-plugins-basic/src}/base/BaseDots.d.ts +2 -2
- package/dist/{src → orbcharts-plugins-basic/src}/base/BaseGroupAxis.d.ts +2 -2
- package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLegend.d.ts +1 -1
- package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLineAreas.d.ts +3 -3
- package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLines.d.ts +3 -3
- package/dist/{src → orbcharts-plugins-basic/src}/base/BaseValueAxis.d.ts +3 -2
- package/dist/{src → orbcharts-plugins-basic/src}/grid/defaults.d.ts +1 -1
- package/dist/{src → orbcharts-plugins-basic/src}/grid/gridObservables.d.ts +5 -5
- package/dist/orbcharts-plugins-basic/src/index.d.ts +6 -0
- package/dist/orbcharts-plugins-basic/src/multiValue/defaults.d.ts +9 -0
- package/dist/orbcharts-plugins-basic/src/multiValue/index.d.ts +8 -0
- package/dist/orbcharts-plugins-basic/src/multiValue/multiValueObservables.d.ts +33 -0
- package/dist/orbcharts-plugins-basic/src/multiValue/plugins/MultiValueLegend.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/multiValue/plugins/MultiValueTooltip.d.ts +1 -0
- package/dist/orbcharts-plugins-basic/src/multiValue/plugins/Scatter.d.ts +3 -0
- package/dist/orbcharts-plugins-basic/src/multiValue/plugins/ScatterBubbles.d.ts +3 -0
- package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYAux.d.ts +3 -0
- package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYAxes.d.ts +3 -0
- package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYZoom.d.ts +1 -0
- package/dist/{src → orbcharts-plugins-basic/src}/series/seriesObservables.d.ts +3 -3
- package/dist/{src → orbcharts-plugins-basic/src}/utils/observables.d.ts +1 -1
- package/dist/{src → orbcharts-plugins-basic/src}/utils/orbchartsUtils.d.ts +3 -3
- package/dist/orbcharts-plugins-basic.es.js +11809 -10185
- package/dist/orbcharts-plugins-basic.umd.js +66 -34
- package/dist/src/index.d.ts +1 -5
- 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/BaseBarStack.ts +780 -780
- package/src/base/BaseBars.ts +765 -765
- package/src/base/BaseBarsTriangle.ts +674 -674
- package/src/base/BaseDots.ts +464 -515
- package/src/base/BaseGroupAxis.ts +679 -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/BaseTooltip.ts +385 -385
- package/src/base/BaseValueAxis.ts +583 -580
- package/src/base/types.ts +2 -2
- package/src/const.ts +30 -30
- package/src/grid/defaults.ts +244 -244
- package/src/grid/gridObservables.ts +554 -545
- package/src/grid/index.ts +16 -16
- package/src/grid/plugins/BarStack.ts +64 -64
- 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/GridZoom.ts +218 -218
- package/src/grid/plugins/GroupAux.ts +1103 -1098
- package/src/grid/plugins/GroupAxis.ts +97 -97
- package/src/grid/plugins/LineAreas.ts +65 -65
- package/src/grid/plugins/Lines.ts +59 -59
- package/src/grid/plugins/ValueAxis.ts +94 -93
- package/src/grid/plugins/ValueStackAxis.ts +96 -95
- package/src/index.ts +10 -9
- package/src/multiGrid/defaults.ts +224 -224
- package/src/multiGrid/index.ts +14 -14
- package/src/multiGrid/multiGridObservables.ts +49 -49
- package/src/multiGrid/plugins/MultiBarStack.ts +106 -106
- 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 +159 -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/MultiValueAxis.ts +134 -133
- package/src/multiGrid/plugins/MultiValueStackAxis.ts +134 -133
- package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -299
- package/src/multiGrid/plugins/OverlappingValueStackAxes.ts +299 -298
- package/src/multiValue/defaults.ts +163 -0
- package/src/multiValue/index.ts +9 -0
- package/src/multiValue/multiValueObservables.ts +258 -0
- package/src/multiValue/plugins/MultiValueLegend.ts +107 -0
- package/src/multiValue/plugins/MultiValueTooltip.ts +66 -0
- package/src/multiValue/plugins/Scatter.ts +426 -0
- package/src/multiValue/plugins/ScatterBubbles.ts +551 -0
- package/src/multiValue/plugins/XYAux.ts +682 -0
- package/src/multiValue/plugins/XYAxes.ts +677 -0
- package/src/multiValue/plugins/XYZoom.ts +300 -0
- package/src/noneData/defaults.ts +102 -102
- package/src/noneData/index.ts +3 -3
- package/src/noneData/plugins/Container.ts +27 -27
- package/src/noneData/plugins/Tooltip.ts +373 -373
- package/src/series/defaults.ts +206 -206
- package/src/series/index.ts +9 -9
- package/src/series/plugins/Bubbles.ts +603 -603
- package/src/series/plugins/Pie.ts +623 -623
- package/src/series/plugins/PieEventTexts.ts +283 -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 +78 -78
- package/src/tree/index.ts +4 -4
- package/src/tree/plugins/TreeLegend.ts +100 -107
- package/src/tree/plugins/TreeMap.ts +333 -333
- package/src/tree/plugins/TreeTooltip.ts +66 -66
- package/src/utils/commonUtils.ts +21 -21
- package/src/utils/d3Graphics.ts +174 -174
- package/src/utils/d3Utils.ts +74 -73
- package/src/utils/observables.ts +14 -14
- package/src/utils/orbchartsUtils.ts +101 -100
- package/tsconfig.base.json +13 -13
- package/tsconfig.json +2 -2
- package/vite.config.js +22 -22
- package/dist/src/base/BaseGroupArea.d.ts +0 -0
- package/dist/src/multiValue/plugins/Scatter.d.ts +0 -0
- package/dist/src/multiValue/plugins/ScatterAxes.d.ts +0 -0
- package/dist/src/relationship/index.d.ts +0 -0
- package/src/base/BaseGroupArea.ts +0 -0
- package/src/multiValue/plugins/ScatterAxes.ts +0 -0
- /package/dist/{lib → orbcharts-plugins-basic/lib}/core-types.d.ts +0 -0
- /package/dist/{lib → orbcharts-plugins-basic/lib}/core.d.ts +0 -0
- /package/dist/{lib → orbcharts-plugins-basic/lib}/plugins-basic-types.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/base/BaseTooltip.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/base/types.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/const.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/index.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/BarStack.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Bars.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/BarsPN.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/BarsTriangle.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Dots.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridLegend.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridTooltip.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridZoom.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GroupAux.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GroupAxis.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/LineAreas.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Lines.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/ValueAxis.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/ValueStackAxis.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/defaults.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/index.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/multiGridObservables.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiBarStack.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiBars.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiBarsTriangle.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiDots.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGridLegend.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGridTooltip.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGroupAxis.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiLineAreas.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiLines.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiValueAxis.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiValueStackAxis.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/OverlappingValueAxes.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/OverlappingValueStackAxes.d.ts +0 -0
- /package/dist/{src/grid → orbcharts-plugins-basic/src/multiValue}/plugins/Ranking.d.ts +0 -0
- /package/dist/{src/grid → orbcharts-plugins-basic/src/multiValue}/plugins/RankingAxis.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/noneData/defaults.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/noneData/index.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/noneData/plugins/Container.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/noneData/plugins/Tooltip.d.ts +0 -0
- /package/dist/{src/multiValue → orbcharts-plugins-basic/src/relationship}/index.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/relationship/plugins/Relationship.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/series/defaults.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/series/index.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Bubbles.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Pie.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/PieEventTexts.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/PieLabels.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Rose.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/RoseLabels.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/SeriesLegend.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/SeriesTooltip.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Waffle.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/series/seriesUtils.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/tree/defaults.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/tree/index.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeLegend.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeMap.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeTooltip.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/utils/commonUtils.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/utils/d3Graphics.d.ts +0 -0
- /package/dist/{src → orbcharts-plugins-basic/src}/utils/d3Utils.d.ts +0 -0
- /package/dist/{vite.config.d.ts → orbcharts-plugins-basic/vite.config.d.ts} +0 -0
- /package/src/{grid → multiValue}/plugins/Ranking.ts +0 -0
- /package/src/{grid → multiValue}/plugins/RankingAxis.ts +0 -0
@@ -0,0 +1,163 @@
|
|
1
|
+
import type {
|
2
|
+
MultiValueLegendParams,
|
3
|
+
MultiValueTooltipParams,
|
4
|
+
ScatterParams,
|
5
|
+
ScatterBubblesParams,
|
6
|
+
XYAuxParams,
|
7
|
+
XYAxesParams,
|
8
|
+
XYZoomParams
|
9
|
+
} from '../../lib/plugins-basic-types'
|
10
|
+
|
11
|
+
|
12
|
+
export const DEFAULT_MULTI_VALUE_LEGEND_PARAMS: MultiValueLegendParams = {
|
13
|
+
// position: 'right',
|
14
|
+
// justify: 'end',
|
15
|
+
placement: 'bottom',
|
16
|
+
padding: 28,
|
17
|
+
// offset: [0, 0],
|
18
|
+
backgroundFill: 'none',
|
19
|
+
backgroundStroke: 'none',
|
20
|
+
gap: 10,
|
21
|
+
listRectWidth: 14,
|
22
|
+
listRectHeight: 14,
|
23
|
+
listRectRadius: 0,
|
24
|
+
// highlightEvent: false
|
25
|
+
textColorType: 'primary'
|
26
|
+
}
|
27
|
+
|
28
|
+
export const DEFAULT_MULTI_VALUE_TOOLTIP_PARAMS: MultiValueTooltipParams = {
|
29
|
+
backgroundColorType: 'background',
|
30
|
+
strokeColorType: 'primary',
|
31
|
+
backgroundOpacity: 0.8,
|
32
|
+
textColorType: 'primary',
|
33
|
+
offset: [20, 5],
|
34
|
+
padding: 10,
|
35
|
+
renderFn: (eventData, { styles, utils }) => {
|
36
|
+
const hasCategoryLabel = eventData.categoryLabel === '' ? false : true
|
37
|
+
const hasDatumLabel = eventData.datum.label.slice(0, 11) === 'multiValue_' ? false : true
|
38
|
+
const bulletWidth = styles.textSizePx * 0.7
|
39
|
+
const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
|
40
|
+
const categorySvg = hasCategoryLabel
|
41
|
+
? `<rect width="${bulletWidth}" height="${bulletWidth}" x="${offset}" y="${offset - 1}" rx="${bulletWidth / 2}" fill="${eventData.datum.color}"></rect>
|
42
|
+
<text x="${styles.textSizePx * 1.5}" font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
|
43
|
+
<tspan>${eventData.categoryLabel}</tspan>
|
44
|
+
</text>`
|
45
|
+
: ''
|
46
|
+
const datumLabelSvg = hasDatumLabel
|
47
|
+
? `<tspan>${eventData.datum.label}</tspan> `
|
48
|
+
: ''
|
49
|
+
const datumSvg = `<text font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
|
50
|
+
${datumLabelSvg}<tspan font-weight="bold">${eventData.datum.value}</tspan>
|
51
|
+
</text>`
|
52
|
+
|
53
|
+
return `${categorySvg}
|
54
|
+
<g ${hasCategoryLabel ? `transform="translate(0, ${styles.textSizePx * 2})"` : ''}>
|
55
|
+
${datumSvg}
|
56
|
+
</g>`
|
57
|
+
},
|
58
|
+
}
|
59
|
+
DEFAULT_MULTI_VALUE_TOOLTIP_PARAMS.renderFn.toString = () => `(eventData, { styles, utils }) => {
|
60
|
+
const hasCategoryLabel = eventData.categoryLabel === '' ? false : true
|
61
|
+
const hasDatumLabel = eventData.datum.label.slice(0, 11) === 'multiValue_' ? false : true
|
62
|
+
const bulletWidth = styles.textSizePx * 0.7
|
63
|
+
const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
|
64
|
+
const categorySvg = hasCategoryLabel
|
65
|
+
? \`<rect width="\${bulletWidth}" height="\${bulletWidth}" x="\${offset}" y="\${offset - 1}" rx="\${bulletWidth / 2}" fill="\${eventData.datum.color}"></rect>
|
66
|
+
<text x="\${styles.textSizePx * 1.5}" font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
|
67
|
+
<tspan>\${eventData.categoryLabel}</tspan>
|
68
|
+
</text>\`
|
69
|
+
: ''
|
70
|
+
const datumLabelSvg = hasDatumLabel
|
71
|
+
? \`<tspan>\${eventData.datum.label}</tspan> \`
|
72
|
+
: ''
|
73
|
+
const datumSvg = \`<text font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
|
74
|
+
\${datumLabelSvg}<tspan font-weight="bold">\${eventData.datum.value}</tspan>
|
75
|
+
</text>\`
|
76
|
+
|
77
|
+
return \`\${categorySvg}
|
78
|
+
<g \${hasCategoryLabel ? \`transform="translate(0, \${styles.textSizePx * 2})"\` : ''}>
|
79
|
+
\${datumSvg}
|
80
|
+
</g>\`
|
81
|
+
}`
|
82
|
+
|
83
|
+
export const DEFAULT_SCATTER_PARAMS: ScatterParams = {
|
84
|
+
radius: 5,
|
85
|
+
fillColorType: 'series',
|
86
|
+
strokeColorType: 'series',
|
87
|
+
strokeWidth: 0,
|
88
|
+
}
|
89
|
+
|
90
|
+
export const DEFAULT_SCATTER_BUBBLES_PARAMS: ScatterBubblesParams = {
|
91
|
+
// radius: 5,
|
92
|
+
fillColorType: 'series',
|
93
|
+
strokeColorType: 'series',
|
94
|
+
strokeWidth: 0,
|
95
|
+
valueLinearOpacity: [0.8, 0.8],
|
96
|
+
arcScaleType: 'area',
|
97
|
+
sizeAdjust: 0.5
|
98
|
+
}
|
99
|
+
|
100
|
+
export const DEFAULT_X_Y_AUX_PARAMS: XYAuxParams = {
|
101
|
+
xAxis: {
|
102
|
+
showLine: true,
|
103
|
+
showLabel: true,
|
104
|
+
lineDashArray: '3, 3',
|
105
|
+
lineColorType: 'primary',
|
106
|
+
labelColorType: 'primary',
|
107
|
+
labelTextColorType: 'background',
|
108
|
+
// labelTextFormat: text => text,
|
109
|
+
labelTextFormat: (value: number) => String(Math.round(value)),
|
110
|
+
labelPadding: 20,
|
111
|
+
// labelRotate: 0
|
112
|
+
},
|
113
|
+
yAxis: {
|
114
|
+
showLine: true,
|
115
|
+
showLabel: true,
|
116
|
+
lineDashArray: '3, 3',
|
117
|
+
lineColorType: 'primary',
|
118
|
+
labelColorType: 'primary',
|
119
|
+
labelTextColorType: 'background',
|
120
|
+
// labelTextFormat: text => text,
|
121
|
+
labelTextFormat: (value: number) => String(Math.round(value)),
|
122
|
+
labelPadding: 20,
|
123
|
+
// labelRotate: 0
|
124
|
+
}
|
125
|
+
}
|
126
|
+
DEFAULT_X_Y_AUX_PARAMS.xAxis.labelTextFormat.toString = () => `(value: number) => String(Math.round(value))`
|
127
|
+
DEFAULT_X_Y_AUX_PARAMS.yAxis.labelTextFormat.toString = () => `(value: number) => String(Math.round(value))`
|
128
|
+
|
129
|
+
|
130
|
+
export const DEFAULT_X_Y_AXES_PARAMS: XYAxesParams = {
|
131
|
+
xAxis: {
|
132
|
+
labelOffset: [0, 0],
|
133
|
+
labelColorType: 'primary',
|
134
|
+
axisLineVisible: false,
|
135
|
+
axisLineColorType: 'primary',
|
136
|
+
ticks: null,
|
137
|
+
tickFormat: ',.0f',
|
138
|
+
tickLineVisible: true,
|
139
|
+
tickPadding: 20,
|
140
|
+
tickFullLine: true,
|
141
|
+
tickFullLineDasharray: 'none',
|
142
|
+
tickColorType: 'secondary',
|
143
|
+
tickTextColorType: 'primary'
|
144
|
+
},
|
145
|
+
yAxis: {
|
146
|
+
labelOffset: [0, 0],
|
147
|
+
labelColorType: 'primary',
|
148
|
+
axisLineVisible: false,
|
149
|
+
axisLineColorType: 'primary',
|
150
|
+
ticks: null,
|
151
|
+
tickFormat: ',.0f',
|
152
|
+
tickLineVisible: true,
|
153
|
+
tickPadding: 20,
|
154
|
+
tickFullLine: true,
|
155
|
+
tickFullLineDasharray: 'none',
|
156
|
+
tickColorType: 'secondary',
|
157
|
+
tickTextColorType: 'primary'
|
158
|
+
}
|
159
|
+
}
|
160
|
+
|
161
|
+
export const DEFAULT_X_Y_ZOOM_PARAMS: XYZoomParams = {
|
162
|
+
|
163
|
+
}
|
package/src/multiValue/index.ts
CHANGED
@@ -0,0 +1,9 @@
|
|
1
|
+
export * from './defaults'
|
2
|
+
// export * from './types'
|
3
|
+
export { MultiValueLegend } from './plugins/MultiValueLegend'
|
4
|
+
export { MultiValueTooltip } from './plugins/MultiValueTooltip'
|
5
|
+
export { Scatter } from './plugins/Scatter'
|
6
|
+
export { ScatterBubbles } from './plugins/ScatterBubbles'
|
7
|
+
export { XYAux } from './plugins/XYAux'
|
8
|
+
export { XYAxes } from './plugins/XYAxes'
|
9
|
+
export { XYZoom } from './plugins/XYZoom'
|
@@ -0,0 +1,258 @@
|
|
1
|
+
import * as d3 from 'd3'
|
2
|
+
import {
|
3
|
+
Observable,
|
4
|
+
Subject,
|
5
|
+
debounceTime,
|
6
|
+
of,
|
7
|
+
takeUntil,
|
8
|
+
filter,
|
9
|
+
map,
|
10
|
+
switchMap,
|
11
|
+
combineLatest,
|
12
|
+
merge,
|
13
|
+
shareReplay,
|
14
|
+
distinctUntilChanged
|
15
|
+
} from 'rxjs'
|
16
|
+
import type {
|
17
|
+
ChartParams,
|
18
|
+
HighlightTarget,
|
19
|
+
DataFormatterMultiValue,
|
20
|
+
ComputedDataMultiValue,
|
21
|
+
ComputedDatumMultiValue,
|
22
|
+
ComputedLayoutDatumMultiValue,
|
23
|
+
TransformData,
|
24
|
+
ContainerPositionScaled,
|
25
|
+
Layout,
|
26
|
+
} from '../../lib/core-types'
|
27
|
+
import { createAxisToLabelIndexScale, createAxisToValueScale } from '../../lib/core'
|
28
|
+
import { getClassName, getUniID } from '../utils/orbchartsUtils'
|
29
|
+
import { d3EventObservable } from '../utils/observables'
|
30
|
+
|
31
|
+
// 建立 multiValue 主要的 selection
|
32
|
+
export const multiValueSelectionsObservable = ({ selection, pluginName, clipPathID, categoryLabels$, multiValueContainerPosition$, multiValueGraphicTransform$ }: {
|
33
|
+
selection: d3.Selection<any, unknown, any, unknown>
|
34
|
+
pluginName: string
|
35
|
+
clipPathID: string
|
36
|
+
// computedData$: Observable<ComputedDataMultiValue>
|
37
|
+
categoryLabels$: Observable<string[]>
|
38
|
+
multiValueContainerPosition$: Observable<ContainerPositionScaled[]>
|
39
|
+
// multiValueAxesTransform$: Observable<TransformData>
|
40
|
+
multiValueGraphicTransform$: Observable<TransformData>
|
41
|
+
}) => {
|
42
|
+
const categoryClassName = getClassName(pluginName, 'category')
|
43
|
+
const axesClassName = getClassName(pluginName, 'axes')
|
44
|
+
const graphicClassName = getClassName(pluginName, 'graphic')
|
45
|
+
|
46
|
+
// <g> category selection(container排放位置)
|
47
|
+
// <g> axes selection(圖軸)
|
48
|
+
// <defs> clipPath selection
|
49
|
+
// <g> graphic selection(圖形 scale 範圍的變形)
|
50
|
+
const categorySelection$ = categoryLabels$.pipe(
|
51
|
+
map((categoryLabels, i) => {
|
52
|
+
return selection
|
53
|
+
.selectAll<SVGGElement, string>(`g.${categoryClassName}`)
|
54
|
+
.data(categoryLabels, d => d)
|
55
|
+
.join(
|
56
|
+
enter => {
|
57
|
+
return enter
|
58
|
+
.append('g')
|
59
|
+
.classed(categoryClassName, true)
|
60
|
+
.each((d, i, g) => {
|
61
|
+
const axesSelection = d3.select(g[i])
|
62
|
+
.selectAll<SVGGElement, ComputedDatumMultiValue[]>(`g.${axesClassName}`)
|
63
|
+
.data([i])
|
64
|
+
.join(
|
65
|
+
enter => {
|
66
|
+
return enter
|
67
|
+
.append('g')
|
68
|
+
.classed(axesClassName, true)
|
69
|
+
.attr('clip-path', `url(#${clipPathID})`)
|
70
|
+
.each((d, i, g) => {
|
71
|
+
const defsSelection = d3.select(g[i])
|
72
|
+
.selectAll<SVGDefsElement, any>('defs')
|
73
|
+
.data([i])
|
74
|
+
.join('defs')
|
75
|
+
|
76
|
+
const graphicGSelection = d3.select(g[i])
|
77
|
+
.selectAll<SVGGElement, any>('g')
|
78
|
+
.data([i])
|
79
|
+
.join('g')
|
80
|
+
.classed(graphicClassName, true)
|
81
|
+
})
|
82
|
+
},
|
83
|
+
update => update,
|
84
|
+
exit => exit.remove()
|
85
|
+
)
|
86
|
+
})
|
87
|
+
},
|
88
|
+
update => update,
|
89
|
+
exit => exit.remove()
|
90
|
+
)
|
91
|
+
}),
|
92
|
+
shareReplay(1)
|
93
|
+
)
|
94
|
+
|
95
|
+
// <g> category selection
|
96
|
+
combineLatest({
|
97
|
+
categorySelection: categorySelection$,
|
98
|
+
multiValueContainerPosition: multiValueContainerPosition$
|
99
|
+
}).pipe(
|
100
|
+
switchMap(async d => d)
|
101
|
+
).subscribe(data => {
|
102
|
+
data.categorySelection
|
103
|
+
.transition()
|
104
|
+
.attr('transform', (d, i) => {
|
105
|
+
const multiValueContainerPosition = data.multiValueContainerPosition[i] ?? data.multiValueContainerPosition[0]
|
106
|
+
const translate = multiValueContainerPosition.translate
|
107
|
+
const scale = multiValueContainerPosition.scale
|
108
|
+
return `translate(${translate[0]}, ${translate[1]}) scale(${scale[0]}, ${scale[1]})`
|
109
|
+
})
|
110
|
+
})
|
111
|
+
|
112
|
+
// <g> axes selection
|
113
|
+
const axesSelection$ = categorySelection$.pipe(
|
114
|
+
map(categorySelection => {
|
115
|
+
return categorySelection
|
116
|
+
.select<SVGGElement>(`g.${axesClassName}`)
|
117
|
+
}),
|
118
|
+
shareReplay(1)
|
119
|
+
)
|
120
|
+
|
121
|
+
// <defs> clipPath selection
|
122
|
+
const defsSelection$ = axesSelection$.pipe(
|
123
|
+
map(axesSelection => {
|
124
|
+
return axesSelection.select<SVGDefsElement>('defs')
|
125
|
+
}),
|
126
|
+
shareReplay(1)
|
127
|
+
)
|
128
|
+
|
129
|
+
// <g> graphic selection
|
130
|
+
const graphicGSelection$ = combineLatest({
|
131
|
+
axesSelection: axesSelection$,
|
132
|
+
multiValueGraphicTransform: multiValueGraphicTransform$
|
133
|
+
}).pipe(
|
134
|
+
switchMap(async d => d),
|
135
|
+
map(data => {
|
136
|
+
const graphicGSelection = data.axesSelection
|
137
|
+
.select<SVGGElement>(`g.${graphicClassName}`)
|
138
|
+
graphicGSelection
|
139
|
+
.transition()
|
140
|
+
.duration(50)
|
141
|
+
.style('transform', data.multiValueGraphicTransform.value)
|
142
|
+
return graphicGSelection
|
143
|
+
}),
|
144
|
+
shareReplay(1)
|
145
|
+
)
|
146
|
+
|
147
|
+
return {
|
148
|
+
categorySelection$,
|
149
|
+
axesSelection$,
|
150
|
+
defsSelection$,
|
151
|
+
graphicGSelection$
|
152
|
+
}
|
153
|
+
}
|
154
|
+
|
155
|
+
|
156
|
+
export const multiValueXYPositionObservable = ({ rootSelection, fullDataFormatter$, filteredMinMaxXYData$, multiValueContainerPosition$, layout$ }: {
|
157
|
+
rootSelection: d3.Selection<any, unknown, any, unknown>
|
158
|
+
fullDataFormatter$: Observable<DataFormatterMultiValue>
|
159
|
+
// computedData$: Observable<ComputedDataMultiValue>
|
160
|
+
// minMaxXY$: Observable<{ minX: number, maxX: number, minY: number, maxY: number }>
|
161
|
+
filteredMinMaxXYData$: Observable<{
|
162
|
+
minXDatum: ComputedLayoutDatumMultiValue
|
163
|
+
maxXDatum: ComputedLayoutDatumMultiValue
|
164
|
+
minYDatum: ComputedLayoutDatumMultiValue
|
165
|
+
maxYDatum: ComputedLayoutDatumMultiValue
|
166
|
+
}>
|
167
|
+
multiValueContainerPosition$: Observable<ContainerPositionScaled[]>
|
168
|
+
layout$: Observable<Layout>
|
169
|
+
}) => {
|
170
|
+
const rootMousemove$ = d3EventObservable(rootSelection, 'mousemove').pipe(
|
171
|
+
debounceTime(2) // 避免過度頻繁觸發,實測時沒加電腦容易卡頓
|
172
|
+
)
|
173
|
+
|
174
|
+
const columnAmount$ = multiValueContainerPosition$.pipe(
|
175
|
+
map(multiValueContainerPosition => {
|
176
|
+
const maxColumnIndex = multiValueContainerPosition.reduce((acc, current) => {
|
177
|
+
return current.columnIndex > acc ? current.columnIndex : acc
|
178
|
+
}, 0)
|
179
|
+
return maxColumnIndex + 1
|
180
|
+
}),
|
181
|
+
distinctUntilChanged(),
|
182
|
+
shareReplay(1)
|
183
|
+
)
|
184
|
+
|
185
|
+
const rowAmount$ = multiValueContainerPosition$.pipe(
|
186
|
+
map(multiValueContainerPosition => {
|
187
|
+
const maxRowIndex = multiValueContainerPosition.reduce((acc, current) => {
|
188
|
+
return current.rowIndex > acc ? current.rowIndex : acc
|
189
|
+
}, 0)
|
190
|
+
return maxRowIndex + 1
|
191
|
+
}),
|
192
|
+
distinctUntilChanged(),
|
193
|
+
shareReplay(1)
|
194
|
+
)
|
195
|
+
|
196
|
+
const xyScale$ = combineLatest({
|
197
|
+
layout: layout$,
|
198
|
+
filteredMinMaxXYData: filteredMinMaxXYData$,
|
199
|
+
fullDataFormatter: fullDataFormatter$,
|
200
|
+
columnAmount: columnAmount$,
|
201
|
+
rowAmount: rowAmount$
|
202
|
+
}).pipe(
|
203
|
+
switchMap(async d => d),
|
204
|
+
map(data => {
|
205
|
+
const xScale = createAxisToValueScale({
|
206
|
+
maxValue: data.filteredMinMaxXYData.maxXDatum.value[0],
|
207
|
+
minValue: data.filteredMinMaxXYData.minXDatum.value[0],
|
208
|
+
axisWidth: data.layout.width,
|
209
|
+
scaleDomain: data.fullDataFormatter.xAxis.scaleDomain,
|
210
|
+
scaleRange: data.fullDataFormatter.xAxis.scaleRange,
|
211
|
+
})
|
212
|
+
const yScale = createAxisToValueScale({
|
213
|
+
maxValue: data.filteredMinMaxXYData.maxYDatum.value[1],
|
214
|
+
minValue: data.filteredMinMaxXYData.minYDatum.value[1],
|
215
|
+
axisWidth: data.layout.height,
|
216
|
+
scaleDomain: data.fullDataFormatter.yAxis.scaleDomain,
|
217
|
+
scaleRange: data.fullDataFormatter.yAxis.scaleRange,
|
218
|
+
reverse: true
|
219
|
+
})
|
220
|
+
return { xScale, yScale }
|
221
|
+
})
|
222
|
+
)
|
223
|
+
|
224
|
+
const axisValue$ = combineLatest({
|
225
|
+
fullDataFormatter: fullDataFormatter$,
|
226
|
+
rootMousemove: rootMousemove$,
|
227
|
+
columnAmount: columnAmount$,
|
228
|
+
rowAmount: rowAmount$,
|
229
|
+
layout: layout$,
|
230
|
+
multiValueContainerPosition: multiValueContainerPosition$
|
231
|
+
}).pipe(
|
232
|
+
switchMap(async d => d),
|
233
|
+
map(data => {
|
234
|
+
// 由於event座標是基於底層的,但是container會有多欄,所以要重新計算
|
235
|
+
return {
|
236
|
+
x: ((data.rootMousemove.offsetX - data.layout.left) / data.multiValueContainerPosition[0].scale[0])
|
237
|
+
% (data.layout.rootWidth / data.columnAmount / data.multiValueContainerPosition[0].scale[0]),
|
238
|
+
y: ((data.rootMousemove.offsetY - data.layout.top) / data.multiValueContainerPosition[0].scale[1])
|
239
|
+
% (data.layout.rootHeight / data.rowAmount / data.multiValueContainerPosition[0].scale[1])
|
240
|
+
}
|
241
|
+
})
|
242
|
+
)
|
243
|
+
|
244
|
+
return combineLatest({
|
245
|
+
xyScale: xyScale$,
|
246
|
+
axisValue: axisValue$
|
247
|
+
}).pipe(
|
248
|
+
switchMap(async d => d),
|
249
|
+
map(data => {
|
250
|
+
return {
|
251
|
+
x: data.axisValue.x,
|
252
|
+
y: data.axisValue.y,
|
253
|
+
xValue: data.xyScale.xScale(data.axisValue.x),
|
254
|
+
yValue: data.xyScale.yScale(data.axisValue.y)
|
255
|
+
}
|
256
|
+
})
|
257
|
+
)
|
258
|
+
}
|
@@ -0,0 +1,107 @@
|
|
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
|
+
defineMultiValuePlugin } from '../../../lib/core'
|
12
|
+
import { DEFAULT_MULTI_VALUE_LEGEND_PARAMS } from '../defaults'
|
13
|
+
import { createBaseLegend } from '../../base/BaseLegend'
|
14
|
+
import { LAYER_INDEX_OF_INFO } from '../../const'
|
15
|
+
|
16
|
+
const pluginName = 'MultiValueLegend'
|
17
|
+
|
18
|
+
const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_MULTI_VALUE_LEGEND_PARAMS> = {
|
19
|
+
name: pluginName,
|
20
|
+
defaultParams: DEFAULT_MULTI_VALUE_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 MultiValueLegend = defineMultiValuePlugin(pluginConfig)(({ selection, rootSelection, observer, subject }) => {
|
65
|
+
|
66
|
+
const destroy$ = new Subject()
|
67
|
+
|
68
|
+
const categoryLabels$: Observable<string[]> = observer.CategoryDataMap$.pipe(
|
69
|
+
takeUntil(destroy$),
|
70
|
+
map(data => {
|
71
|
+
return Array.from(data.keys())
|
72
|
+
})
|
73
|
+
)
|
74
|
+
|
75
|
+
// 全部列點矩型使用相同樣式參數
|
76
|
+
const fullParams$ = observer.fullParams$.pipe(
|
77
|
+
takeUntil(destroy$),
|
78
|
+
map(d => {
|
79
|
+
const labelList = [
|
80
|
+
{
|
81
|
+
listRectWidth: d.listRectWidth,
|
82
|
+
listRectHeight: d.listRectHeight,
|
83
|
+
listRectRadius: d.listRectRadius,
|
84
|
+
}
|
85
|
+
]
|
86
|
+
return {
|
87
|
+
...d,
|
88
|
+
labelList
|
89
|
+
}
|
90
|
+
})
|
91
|
+
)
|
92
|
+
|
93
|
+
const unsubscribeBaseLegend = createBaseLegend(pluginName, {
|
94
|
+
rootSelection,
|
95
|
+
legendLabels$: categoryLabels$,
|
96
|
+
fullParams$,
|
97
|
+
layout$: observer.layout$,
|
98
|
+
fullChartParams$: observer.fullChartParams$,
|
99
|
+
textSizePx$: observer.textSizePx$
|
100
|
+
})
|
101
|
+
|
102
|
+
return () => {
|
103
|
+
destroy$.next(undefined)
|
104
|
+
unsubscribeBaseLegend()
|
105
|
+
}
|
106
|
+
})
|
107
|
+
|
@@ -0,0 +1,66 @@
|
|
1
|
+
import {
|
2
|
+
Subject,
|
3
|
+
} from 'rxjs'
|
4
|
+
import type { DefinePluginConfig } from '../../../lib/core-types'
|
5
|
+
import {
|
6
|
+
defineMultiValuePlugin } from '../../../lib/core'
|
7
|
+
import { DEFAULT_MULTI_VALUE_TOOLTIP_PARAMS } from '../defaults'
|
8
|
+
import { LAYER_INDEX_OF_TOOLTIP } from '../../const'
|
9
|
+
import { createBaseTooltip } from '../../base/BaseTooltip'
|
10
|
+
|
11
|
+
const pluginName = 'MultiValueTooltip'
|
12
|
+
|
13
|
+
const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_MULTI_VALUE_TOOLTIP_PARAMS> = {
|
14
|
+
name: pluginName,
|
15
|
+
defaultParams: DEFAULT_MULTI_VALUE_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 MultiValueTooltip = defineMultiValuePlugin(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
|
+
})
|