@orbcharts/plugins-basic 3.0.0-beta.3 → 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.
Files changed (147) hide show
  1. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseBarStack.d.ts +2 -2
  2. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseBars.d.ts +2 -2
  3. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseBarsTriangle.d.ts +2 -2
  4. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseDots.d.ts +2 -2
  5. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseGroupAxis.d.ts +2 -2
  6. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLegend.d.ts +1 -1
  7. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLineAreas.d.ts +3 -3
  8. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLines.d.ts +3 -3
  9. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseValueAxis.d.ts +3 -2
  10. package/dist/{src → orbcharts-plugins-basic/src}/grid/defaults.d.ts +1 -1
  11. package/dist/{src → orbcharts-plugins-basic/src}/grid/gridObservables.d.ts +5 -5
  12. package/dist/orbcharts-plugins-basic/src/index.d.ts +6 -0
  13. package/dist/orbcharts-plugins-basic/src/multiValue/defaults.d.ts +9 -0
  14. package/dist/orbcharts-plugins-basic/src/multiValue/index.d.ts +8 -0
  15. package/dist/orbcharts-plugins-basic/src/multiValue/multiValueObservables.d.ts +33 -0
  16. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/MultiValueLegend.d.ts +1 -0
  17. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/MultiValueTooltip.d.ts +1 -0
  18. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/Scatter.d.ts +3 -0
  19. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/ScatterBubbles.d.ts +3 -0
  20. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYAux.d.ts +3 -0
  21. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYAxes.d.ts +3 -0
  22. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYZoom.d.ts +1 -0
  23. package/dist/{src → orbcharts-plugins-basic/src}/series/seriesObservables.d.ts +3 -3
  24. package/dist/{src → orbcharts-plugins-basic/src}/utils/observables.d.ts +1 -1
  25. package/dist/{src → orbcharts-plugins-basic/src}/utils/orbchartsUtils.d.ts +3 -3
  26. package/dist/orbcharts-plugins-basic.es.js +11809 -10185
  27. package/dist/orbcharts-plugins-basic.umd.js +66 -34
  28. package/dist/src/index.d.ts +1 -5
  29. package/package.json +4 -4
  30. package/src/base/BaseBarStack.ts +2 -2
  31. package/src/base/BaseBars.ts +2 -2
  32. package/src/base/BaseBarsTriangle.ts +2 -2
  33. package/src/base/BaseDots.ts +2 -53
  34. package/src/base/BaseGroupAxis.ts +3 -3
  35. package/src/base/BaseLegend.ts +21 -17
  36. package/src/base/BaseLineAreas.ts +3 -3
  37. package/src/base/BaseLines.ts +3 -3
  38. package/src/base/BaseValueAxis.ts +46 -43
  39. package/src/grid/defaults.ts +3 -3
  40. package/src/grid/gridObservables.ts +24 -15
  41. package/src/grid/plugins/GridLegend.ts +2 -2
  42. package/src/grid/plugins/GridZoom.ts +14 -14
  43. package/src/grid/plugins/GroupAux.ts +206 -201
  44. package/src/grid/plugins/ValueAxis.ts +1 -0
  45. package/src/grid/plugins/ValueStackAxis.ts +1 -0
  46. package/src/index.ts +1 -0
  47. package/src/multiGrid/plugins/MultiGridLegend.ts +2 -2
  48. package/src/multiGrid/plugins/MultiValueAxis.ts +1 -0
  49. package/src/multiGrid/plugins/MultiValueStackAxis.ts +1 -0
  50. package/src/multiGrid/plugins/OverlappingValueAxes.ts +1 -0
  51. package/src/multiGrid/plugins/OverlappingValueStackAxes.ts +1 -0
  52. package/src/multiValue/defaults.ts +163 -0
  53. package/src/multiValue/index.ts +9 -0
  54. package/src/multiValue/multiValueObservables.ts +258 -0
  55. package/src/multiValue/plugins/MultiValueLegend.ts +107 -0
  56. package/src/multiValue/plugins/MultiValueTooltip.ts +66 -0
  57. package/src/multiValue/plugins/Scatter.ts +426 -0
  58. package/src/multiValue/plugins/ScatterBubbles.ts +551 -0
  59. package/src/multiValue/plugins/XYAux.ts +682 -0
  60. package/src/multiValue/plugins/XYAxes.ts +677 -0
  61. package/src/multiValue/plugins/XYZoom.ts +300 -0
  62. package/src/series/plugins/Bubbles.ts +4 -4
  63. package/src/series/plugins/Pie.ts +2 -2
  64. package/src/series/plugins/PieEventTexts.ts +2 -2
  65. package/src/series/plugins/PieLabels.ts +2 -2
  66. package/src/series/plugins/Rose.ts +2 -2
  67. package/src/series/plugins/RoseLabels.ts +2 -2
  68. package/src/series/plugins/SeriesLegend.ts +4 -4
  69. package/src/series/seriesObservables.ts +3 -3
  70. package/src/tree/plugins/TreeLegend.ts +3 -10
  71. package/src/utils/d3Utils.ts +2 -1
  72. package/src/utils/observables.ts +2 -2
  73. package/src/utils/orbchartsUtils.ts +7 -6
  74. package/dist/src/base/BaseGroupArea.d.ts +0 -0
  75. package/dist/src/multiValue/plugins/Scatter.d.ts +0 -0
  76. package/dist/src/multiValue/plugins/ScatterAxes.d.ts +0 -0
  77. package/dist/src/relationship/index.d.ts +0 -0
  78. package/src/base/BaseGroupArea.ts +0 -0
  79. package/src/multiValue/plugins/ScatterAxes.ts +0 -0
  80. /package/dist/{lib → orbcharts-plugins-basic/lib}/core-types.d.ts +0 -0
  81. /package/dist/{lib → orbcharts-plugins-basic/lib}/core.d.ts +0 -0
  82. /package/dist/{lib → orbcharts-plugins-basic/lib}/plugins-basic-types.d.ts +0 -0
  83. /package/dist/{src → orbcharts-plugins-basic/src}/base/BaseTooltip.d.ts +0 -0
  84. /package/dist/{src → orbcharts-plugins-basic/src}/base/types.d.ts +0 -0
  85. /package/dist/{src → orbcharts-plugins-basic/src}/const.d.ts +0 -0
  86. /package/dist/{src → orbcharts-plugins-basic/src}/grid/index.d.ts +0 -0
  87. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/BarStack.d.ts +0 -0
  88. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Bars.d.ts +0 -0
  89. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/BarsPN.d.ts +0 -0
  90. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/BarsTriangle.d.ts +0 -0
  91. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Dots.d.ts +0 -0
  92. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridLegend.d.ts +0 -0
  93. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridTooltip.d.ts +0 -0
  94. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridZoom.d.ts +0 -0
  95. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GroupAux.d.ts +0 -0
  96. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GroupAxis.d.ts +0 -0
  97. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/LineAreas.d.ts +0 -0
  98. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Lines.d.ts +0 -0
  99. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/ValueAxis.d.ts +0 -0
  100. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/ValueStackAxis.d.ts +0 -0
  101. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/defaults.d.ts +0 -0
  102. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/index.d.ts +0 -0
  103. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/multiGridObservables.d.ts +0 -0
  104. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiBarStack.d.ts +0 -0
  105. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiBars.d.ts +0 -0
  106. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiBarsTriangle.d.ts +0 -0
  107. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiDots.d.ts +0 -0
  108. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGridLegend.d.ts +0 -0
  109. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGridTooltip.d.ts +0 -0
  110. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGroupAxis.d.ts +0 -0
  111. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiLineAreas.d.ts +0 -0
  112. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiLines.d.ts +0 -0
  113. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiValueAxis.d.ts +0 -0
  114. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiValueStackAxis.d.ts +0 -0
  115. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/OverlappingValueAxes.d.ts +0 -0
  116. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/OverlappingValueStackAxes.d.ts +0 -0
  117. /package/dist/{src/grid → orbcharts-plugins-basic/src/multiValue}/plugins/Ranking.d.ts +0 -0
  118. /package/dist/{src/grid → orbcharts-plugins-basic/src/multiValue}/plugins/RankingAxis.d.ts +0 -0
  119. /package/dist/{src → orbcharts-plugins-basic/src}/noneData/defaults.d.ts +0 -0
  120. /package/dist/{src → orbcharts-plugins-basic/src}/noneData/index.d.ts +0 -0
  121. /package/dist/{src → orbcharts-plugins-basic/src}/noneData/plugins/Container.d.ts +0 -0
  122. /package/dist/{src → orbcharts-plugins-basic/src}/noneData/plugins/Tooltip.d.ts +0 -0
  123. /package/dist/{src/multiValue → orbcharts-plugins-basic/src/relationship}/index.d.ts +0 -0
  124. /package/dist/{src → orbcharts-plugins-basic/src}/relationship/plugins/Relationship.d.ts +0 -0
  125. /package/dist/{src → orbcharts-plugins-basic/src}/series/defaults.d.ts +0 -0
  126. /package/dist/{src → orbcharts-plugins-basic/src}/series/index.d.ts +0 -0
  127. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Bubbles.d.ts +0 -0
  128. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Pie.d.ts +0 -0
  129. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/PieEventTexts.d.ts +0 -0
  130. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/PieLabels.d.ts +0 -0
  131. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Rose.d.ts +0 -0
  132. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/RoseLabels.d.ts +0 -0
  133. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/SeriesLegend.d.ts +0 -0
  134. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/SeriesTooltip.d.ts +0 -0
  135. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Waffle.d.ts +0 -0
  136. /package/dist/{src → orbcharts-plugins-basic/src}/series/seriesUtils.d.ts +0 -0
  137. /package/dist/{src → orbcharts-plugins-basic/src}/tree/defaults.d.ts +0 -0
  138. /package/dist/{src → orbcharts-plugins-basic/src}/tree/index.d.ts +0 -0
  139. /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeLegend.d.ts +0 -0
  140. /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeMap.d.ts +0 -0
  141. /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeTooltip.d.ts +0 -0
  142. /package/dist/{src → orbcharts-plugins-basic/src}/utils/commonUtils.d.ts +0 -0
  143. /package/dist/{src → orbcharts-plugins-basic/src}/utils/d3Graphics.d.ts +0 -0
  144. /package/dist/{src → orbcharts-plugins-basic/src}/utils/d3Utils.d.ts +0 -0
  145. /package/dist/{vite.config.d.ts → orbcharts-plugins-basic/vite.config.d.ts} +0 -0
  146. /package/src/{grid → multiValue}/plugins/Ranking.ts +0 -0
  147. /package/src/{grid → multiValue}/plugins/RankingAxis.ts +0 -0
@@ -277,6 +277,7 @@ export const OverlappingValueStackAxes = defineMultiGridPlugin(pluginConfig)(({
277
277
  unsubscribeFnArr[i] = createBaseValueAxis(pluginName, {
278
278
  selection: gridSelection,
279
279
  computedData$: i === 0 ? d.computedStackedData$ : d.computedData$, // 第一個圖軸計算疊加value的資料
280
+ filteredMinMaxValue$: d.filteredMinMaxValue$,
280
281
  fullParams$: observer.fullParams$.pipe(
281
282
  map(fullParams => i === 0 ? fullParams.firstAxis : fullParams.secondAxis)
282
283
  ),
@@ -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
+ }
@@ -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
+ })