@orbcharts/plugins-basic 3.0.0-alpha.79 → 3.0.0-beta.2

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 (40) hide show
  1. package/dist/orbcharts-plugins-basic.es.js +7876 -7406
  2. package/dist/orbcharts-plugins-basic.umd.js +124 -19
  3. package/dist/src/base/BaseTooltip.d.ts +14 -0
  4. package/dist/src/grid/defaults.d.ts +3 -2
  5. package/dist/src/grid/index.d.ts +2 -1
  6. package/dist/src/grid/plugins/GridTooltip.d.ts +1 -0
  7. package/dist/src/grid/plugins/GridZoom.d.ts +1 -0
  8. package/dist/src/multiGrid/defaults.d.ts +2 -1
  9. package/dist/src/multiGrid/index.d.ts +1 -0
  10. package/dist/src/multiGrid/plugins/MultiGridTooltip.d.ts +1 -0
  11. package/dist/src/noneData/index.d.ts +0 -1
  12. package/dist/src/series/defaults.d.ts +2 -1
  13. package/dist/src/series/index.d.ts +1 -0
  14. package/dist/src/series/plugins/SeriesTooltip.d.ts +1 -0
  15. package/dist/src/tree/defaults.d.ts +2 -1
  16. package/dist/src/tree/index.d.ts +1 -0
  17. package/dist/src/tree/plugins/TreeTooltip.d.ts +1 -0
  18. package/package.json +4 -4
  19. package/src/base/BaseDots.ts +4 -4
  20. package/src/base/BaseLegend.ts +75 -39
  21. package/src/base/BaseTooltip.ts +386 -0
  22. package/src/grid/defaults.ts +122 -5
  23. package/src/grid/index.ts +2 -1
  24. package/src/grid/plugins/GridLegend.ts +11 -0
  25. package/src/grid/plugins/GridTooltip.ts +66 -0
  26. package/src/grid/plugins/{ScalingArea.ts → GridZoom.ts} +5 -5
  27. package/src/multiGrid/defaults.ts +69 -3
  28. package/src/multiGrid/index.ts +1 -0
  29. package/src/multiGrid/plugins/MultiGridLegend.ts +11 -0
  30. package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -0
  31. package/src/noneData/index.ts +1 -1
  32. package/src/series/defaults.ts +61 -3
  33. package/src/series/index.ts +1 -0
  34. package/src/series/plugins/SeriesLegend.ts +11 -0
  35. package/src/series/plugins/SeriesTooltip.ts +66 -0
  36. package/src/tree/defaults.ts +59 -3
  37. package/src/tree/index.ts +2 -1
  38. package/src/tree/plugins/TreeLegend.ts +11 -0
  39. package/src/tree/plugins/TreeTooltip.ts +66 -0
  40. package/dist/src/grid/plugins/ScalingArea.d.ts +0 -1
@@ -7,15 +7,18 @@ import type {
7
7
  MultiLineAreasParams,
8
8
  MultiDotsParams,
9
9
  MultiGroupAxisParams,
10
+ MultiGridTooltipParams,
10
11
  MultiValueAxisParams,
11
12
  MultiValueStackAxisParams,
12
13
  OverlappingValueAxesParams,
13
14
  OverlappingValueStackAxesParams
14
15
  } from '../../lib/plugins-basic-types'
16
+ import { measureTextWidth } from '../utils/commonUtils'
15
17
 
16
18
  export const DEFAULT_MULTI_GRID_LEGEND_PARAMS: MultiGridLegendParams = {
17
- position: 'right',
18
- justify: 'end',
19
+ // position: 'right',
20
+ // justify: 'end',
21
+ placement: 'bottom',
19
22
  padding: 28,
20
23
  backgroundFill: 'none',
21
24
  backgroundStroke: 'none',
@@ -156,4 +159,67 @@ export const DEFAULT_OVERLAPPING_VALUE_AXES_PARAMS: OverlappingValueAxesParams =
156
159
 
157
160
  export const DEFAULT_OVERLAPPING_VALUE_STACK_AXES_PARAMS: OverlappingValueStackAxesParams = {
158
161
  ...DEFAULT_OVERLAPPING_VALUE_AXES_PARAMS
159
- }
162
+ }
163
+
164
+ export const DEFAULT_MULTI_GRID_TOOLTIP_PARAMS: MultiGridTooltipParams = {
165
+ backgroundColorType: 'background',
166
+ strokeColorType: 'primary',
167
+ backgroundOpacity: 0.8,
168
+ textColorType: 'primary',
169
+ offset: [20, 5],
170
+ padding: 10,
171
+ renderFn: (eventData, { styles, utils }) => {
172
+ const bulletWidth = styles.textSizePx * 0.7
173
+ const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
174
+
175
+ const titleSvg = `<g><text dominant-baseline="hanging" font-size="${styles.textSizePx}">${eventData.groupLabel}</text></g>`
176
+ const maxLengthText = eventData.groups.reduce((acc, group) => {
177
+ const text = `${group.seriesLabel}${group.value}`
178
+ return text.length > acc.length ? text : acc
179
+ }, '')
180
+ const maxTextWidth = utils.measureTextWidth(maxLengthText, styles.textSizePx)
181
+ const lineEndX = maxTextWidth + styles.textSizePx * 2
182
+ const contentSvg = eventData.groups
183
+ .map((group, i) => {
184
+ const y = i * styles.textSizePx * 1.5
185
+ const isHighlight = group.id === (eventData.datum && eventData.datum.id)
186
+ return `<g transform="translate(0, ${styles.textSizePx * 2})">
187
+ <rect width="${bulletWidth}" height="${bulletWidth}" x="${offset}" y="${y + offset}" rx="${bulletWidth / 2}" fill="${group.color}"></rect>
188
+ <text x="${styles.textSizePx * 1.5}" y="${y}" font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
189
+ <tspan font-weight="${isHighlight ? 'bold' : ''}">${group.seriesLabel}</tspan>
190
+ <tspan font-weight="bold" text-anchor="end" x="${lineEndX}">${group.value}</tspan>
191
+ </text>
192
+ </g>`
193
+ })
194
+ .join('')
195
+ return `${titleSvg}
196
+ ${contentSvg}`
197
+ }
198
+ }
199
+ DEFAULT_MULTI_GRID_TOOLTIP_PARAMS.renderFn.toString = () => `(eventData, { styles, utils }) => {
200
+ const bulletWidth = styles.textSizePx * 0.7
201
+ const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
202
+
203
+ const titleSvg = \`<g><text dominant-baseline="hanging" font-size="\${styles.textSizePx}">\${eventData.groupLabel}</text></g>\`
204
+ const maxLengthText = eventData.groups.reduce((acc, group) => {
205
+ const text = \`\${group.seriesLabel}\${group.value}\`
206
+ return text.length > acc.length ? text : acc
207
+ }, '')
208
+ const maxTextWidth = utils.measureTextWidth(maxLengthText, styles.textSizePx)
209
+ const lineEndX = maxTextWidth + styles.textSizePx * 2
210
+ const contentSvg = eventData.groups
211
+ .map((group, i) => {
212
+ const y = i * styles.textSizePx * 1.5
213
+ const isHighlight = group.id === (eventData.datum && eventData.datum.id)
214
+ return \`<g transform="translate(0, \${styles.textSizePx * 2})">
215
+ <rect width="\${bulletWidth}" height="\${bulletWidth}" x="\${offset}" y="\${y + offset}" rx="\${bulletWidth / 2}" fill="\${group.color}"></rect>
216
+ <text x="\${styles.textSizePx * 1.5}" y="\${y}" font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
217
+ <tspan font-weight="\${isHighlight ? 'bold' : ''}">\${group.seriesLabel}</tspan>
218
+ <tspan font-weight="bold" text-anchor="end" x="\${lineEndX}">\${group.value}</tspan>
219
+ </text>
220
+ </g>\`
221
+ })
222
+ .join('')
223
+ return \`\${titleSvg}
224
+ \${contentSvg}\`
225
+ }`
@@ -9,6 +9,7 @@ export { MultiLineAreas } from './plugins/MultiLineAreas'
9
9
  export { MultiDots } from './plugins/MultiDots'
10
10
  export { MultiGroupAxis } from './plugins/MultiGroupAxis'
11
11
  export { MultiValueAxis } from './plugins/MultiValueAxis'
12
+ export { MultiGridTooltip } from './plugins/MultiGridTooltip'
12
13
  export { MultiValueStackAxis } from './plugins/MultiValueStackAxis'
13
14
  export { OverlappingValueAxes } from './plugins/OverlappingValueAxes'
14
15
  export { OverlappingValueStackAxes } from './plugins/OverlappingValueStackAxes'
@@ -22,6 +22,17 @@ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_MULTI_G
22
22
  layerIndex: LAYER_INDEX_OF_INFO,
23
23
  validator: (params, { validateColumns }) => {
24
24
  const result = validateColumns(params, {
25
+ placement: {
26
+ toBe: '"top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end" | "right" | "right-start" | "right-end"',
27
+ test: (value) => {
28
+ return [
29
+ 'top', 'top-start', 'top-end',
30
+ 'bottom', 'bottom-start', 'bottom-end',
31
+ 'left', 'left-start', 'left-end',
32
+ 'right', 'right-start', 'right-end'
33
+ ].includes(value)
34
+ }
35
+ },
25
36
  padding: {
26
37
  toBeTypes: ['number']
27
38
  },
@@ -0,0 +1,66 @@
1
+ import {
2
+ Subject,
3
+ } from 'rxjs'
4
+ import type { DefinePluginConfig } from '../../../lib/core-types'
5
+ import {
6
+ defineMultiGridPlugin } from '../../../lib/core'
7
+ import { DEFAULT_MULTI_GRID_TOOLTIP_PARAMS } from '../defaults'
8
+ import { LAYER_INDEX_OF_TOOLTIP } from '../../const'
9
+ import { createBaseTooltip } from '../../base/BaseTooltip'
10
+
11
+ const pluginName = 'MultiGridTooltip'
12
+
13
+ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_MULTI_GRID_TOOLTIP_PARAMS> = {
14
+ name: pluginName,
15
+ defaultParams: DEFAULT_MULTI_GRID_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 MultiGridTooltip = defineMultiGridPlugin(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
+ })
@@ -1,4 +1,4 @@
1
1
  export * from './defaults'
2
2
  // export * from './types'
3
3
  // export { Container } from './plugins/Container'
4
- export { Tooltip } from './plugins/Tooltip'
4
+ // export { Tooltip } from './plugins/Tooltip'
@@ -6,7 +6,9 @@ import type {
6
6
  PieLabelsParams,
7
7
  RoseParams,
8
8
  RoseLabelsParams,
9
- SeriesLegendParams } from '../../lib/plugins-basic-types'
9
+ SeriesLegendParams,
10
+ SeriesTooltipParams
11
+ } from '../../lib/plugins-basic-types'
10
12
 
11
13
 
12
14
  export const DEFAULT_BUBBLES_PARAMS: BubblesParams = {
@@ -134,8 +136,9 @@ export const DEFAULT_ROSE_LABELS_PARAMS: RoseLabelsParams = {
134
136
  DEFAULT_ROSE_LABELS_PARAMS.labelFn.toString = () => `d => String(d.label)`
135
137
 
136
138
  export const DEFAULT_SERIES_LEGEND_PARAMS: SeriesLegendParams = {
137
- position: 'right',
138
- justify: 'end',
139
+ // position: 'right',
140
+ // justify: 'end',
141
+ placement: 'right-end',
139
142
  padding: 28,
140
143
  // offset: [0, 0],
141
144
  backgroundFill: 'none',
@@ -147,3 +150,58 @@ export const DEFAULT_SERIES_LEGEND_PARAMS: SeriesLegendParams = {
147
150
  // highlightEvent: false
148
151
  textColorType: 'primary'
149
152
  }
153
+
154
+ export const DEFAULT_SERIES_TOOLTIP_PARAMS: SeriesTooltipParams = {
155
+ backgroundColorType: 'background',
156
+ strokeColorType: 'primary',
157
+ backgroundOpacity: 0.8,
158
+ textColorType: 'primary',
159
+ offset: [20, 5],
160
+ padding: 10,
161
+ renderFn: (eventData, { styles, utils }) => {
162
+ const hasSeriesLabel = eventData.seriesLabel.slice(0, 7) === 'series_' ? false : true
163
+ const hasDatumLabel = eventData.datum.label.slice(0, 7) === 'series_' ? false : true
164
+ const bulletWidth = styles.textSizePx * 0.7
165
+ const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
166
+ const seriesSvg = hasSeriesLabel
167
+ ? `<rect width="${bulletWidth}" height="${bulletWidth}" x="${offset}" y="${offset - 1}" rx="${bulletWidth / 2}" fill="${eventData.datum.color}"></rect>
168
+ <text x="${styles.textSizePx * 1.5}" font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
169
+ <tspan>${eventData.seriesLabel}</tspan>
170
+ </text>`
171
+ : ''
172
+ const datumLabelSvg = hasDatumLabel
173
+ ? `<tspan>${eventData.datum.label}</tspan> `
174
+ : ''
175
+ const datumSvg = `<text font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
176
+ ${datumLabelSvg}<tspan font-weight="bold">${eventData.datum.value}</tspan>
177
+ </text>`
178
+
179
+ return `${seriesSvg}
180
+ <g ${hasSeriesLabel ? `transform="translate(0, ${styles.textSizePx * 2})"` : ''}>
181
+ ${datumSvg}
182
+ </g>`
183
+ },
184
+ }
185
+ DEFAULT_SERIES_TOOLTIP_PARAMS.renderFn.toString = () => `(eventData, { styles, utils }) => {
186
+ const hasSeriesLabel = eventData.seriesLabel.slice(0, 7) === 'series_' ? false : true
187
+ const hasDatumLabel = eventData.datum.label.slice(0, 7) === 'series_' ? false : true
188
+ const bulletWidth = styles.textSizePx * 0.7
189
+ const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
190
+ const seriesSvg = hasSeriesLabel
191
+ ? \`<rect width="\${bulletWidth}" height="\${bulletWidth}" x="\${offset}" y="\${offset - 1}" rx="\${bulletWidth / 2}" fill="\${eventData.datum.color}"></rect>
192
+ <text x="\${styles.textSizePx * 1.5}" font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
193
+ <tspan>\${eventData.seriesLabel}</tspan>
194
+ </text>\`
195
+ : ''
196
+ const datumLabelSvg = hasDatumLabel
197
+ ? \`<tspan>\${eventData.datum.label}</tspan> \`
198
+ : ''
199
+ const datumSvg = \`<text font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
200
+ \${datumLabelSvg}<tspan font-weight="bold">\${eventData.datum.value}</tspan>
201
+ </text>\`
202
+
203
+ return \`\${seriesSvg}
204
+ <g \${hasSeriesLabel ? \`transform="translate(0, \${styles.textSizePx * 2})"\` : ''}>
205
+ \${datumSvg}
206
+ </g>\`
207
+ }`
@@ -7,3 +7,4 @@ export { PieLabels } from './plugins/PieLabels'
7
7
  export { Rose } from './plugins/Rose'
8
8
  export { RoseLabels } from './plugins/RoseLabels'
9
9
  export { SeriesLegend } from './plugins/SeriesLegend'
10
+ export { SeriesTooltip } from './plugins/SeriesTooltip'
@@ -21,6 +21,17 @@ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_SERIES_
21
21
  layerIndex: LAYER_INDEX_OF_INFO,
22
22
  validator: (params, { validateColumns }) => {
23
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
+ },
24
35
  padding: {
25
36
  toBeTypes: ['number']
26
37
  },
@@ -0,0 +1,66 @@
1
+ import {
2
+ Subject,
3
+ } from 'rxjs'
4
+ import type { DefinePluginConfig } from '../../../lib/core-types'
5
+ import {
6
+ defineSeriesPlugin } from '../../../lib/core'
7
+ import { DEFAULT_SERIES_TOOLTIP_PARAMS } from '../defaults'
8
+ import { LAYER_INDEX_OF_TOOLTIP } from '../../const'
9
+ import { createBaseTooltip } from '../../base/BaseTooltip'
10
+
11
+ const pluginName = 'SeriesTooltip'
12
+
13
+ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_SERIES_TOOLTIP_PARAMS> = {
14
+ name: pluginName,
15
+ defaultParams: DEFAULT_SERIES_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 SeriesTooltip = defineSeriesPlugin(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
+ })
@@ -1,4 +1,4 @@
1
- import type { TreeMapParams, TreeLegendParams } from '../../lib/plugins-basic-types'
1
+ import type { TreeMapParams, TreeLegendParams, TreeTooltipParams } from '../../lib/plugins-basic-types'
2
2
 
3
3
  export const DEFAULT_TREE_MAP_PARAMS: TreeMapParams = {
4
4
  paddingInner: 2,
@@ -10,8 +10,9 @@ export const DEFAULT_TREE_MAP_PARAMS: TreeMapParams = {
10
10
  DEFAULT_TREE_MAP_PARAMS.sort.toString = () => `(a, b) => b.value - a.value`
11
11
 
12
12
  export const DEFAULT_TREE_LEGEND_PARAMS: TreeLegendParams = {
13
- position: 'right',
14
- justify: 'end',
13
+ // position: 'right',
14
+ // justify: 'end',
15
+ placement: 'bottom',
15
16
  padding: 28,
16
17
  backgroundFill: 'none',
17
18
  backgroundStroke: 'none',
@@ -21,3 +22,58 @@ export const DEFAULT_TREE_LEGEND_PARAMS: TreeLegendParams = {
21
22
  listRectRadius: 0,
22
23
  textColorType: 'primary'
23
24
  }
25
+
26
+ export const DEFAULT_TREE_TOOLTIP_PARAMS: TreeTooltipParams = {
27
+ backgroundColorType: 'background',
28
+ strokeColorType: 'primary',
29
+ backgroundOpacity: 0.8,
30
+ textColorType: 'primary',
31
+ offset: [20, 5],
32
+ padding: 10,
33
+ renderFn: (eventData, { styles, utils }) => {
34
+ const hasCategoryLabel = eventData.categoryLabel ? true : false
35
+ const hasDatumLabel = eventData.datum.label ? true : false
36
+ const bulletWidth = styles.textSizePx * 0.7
37
+ const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
38
+ const categorySvg = hasCategoryLabel
39
+ ? `<rect width="${bulletWidth}" height="${bulletWidth}" x="${offset}" y="${offset - 1}" rx="${bulletWidth / 2}" fill="${eventData.datum.color}"></rect>
40
+ <text x="${styles.textSizePx * 1.5}" font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
41
+ <tspan>${eventData.categoryLabel}</tspan>
42
+ </text>`
43
+ : ''
44
+ const datumLabelSvg = hasDatumLabel
45
+ ? `<tspan>${eventData.datum.label}</tspan> `
46
+ : ''
47
+ const datumSvg = `<text font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
48
+ ${datumLabelSvg}<tspan font-weight="bold">${eventData.datum.value}</tspan>
49
+ </text>`
50
+
51
+ return `${categorySvg}
52
+ <g ${hasCategoryLabel ? `transform="translate(0, ${styles.textSizePx * 2})"` : ''}>
53
+ ${datumSvg}
54
+ </g>`
55
+ },
56
+ }
57
+ DEFAULT_TREE_TOOLTIP_PARAMS.renderFn.toString = () => `(eventData, { styles, utils }) => {
58
+ const hasCategoryLabel = eventData.categoryLabel ? true : false
59
+ const hasDatumLabel = eventData.datum.label ? true : false
60
+ const bulletWidth = styles.textSizePx * 0.7
61
+ const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
62
+ const categorySvg = hasCategoryLabel
63
+ ? \`<rect width="\${bulletWidth}" height="\${bulletWidth}" x="\${offset}" y="\${offset - 1}" rx="\${bulletWidth / 2}" fill="\${eventData.datum.color}"></rect>
64
+ <text x="\${styles.textSizePx * 1.5}" font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
65
+ <tspan>\${eventData.categoryLabel}</tspan>
66
+ </text>\`
67
+ : ''
68
+ const datumLabelSvg = hasDatumLabel
69
+ ? \`<tspan>\${eventData.datum.label}</tspan> \`
70
+ : ''
71
+ const datumSvg = \`<text font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
72
+ \${datumLabelSvg}<tspan font-weight="bold">\${eventData.datum.value}</tspan>
73
+ </text>\`
74
+
75
+ return \`\${categorySvg}
76
+ <g \${hasCategoryLabel ? \`transform="translate(0, \${styles.textSizePx * 2})"\` : ''}>
77
+ \${datumSvg}
78
+ </g>\`
79
+ }`
package/src/tree/index.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from './defaults'
2
2
  // export * from './types'
3
3
  export { TreeLegend } from './plugins/TreeLegend'
4
- export { TreeMap } from './plugins/TreeMap'
4
+ export { TreeMap } from './plugins/TreeMap'
5
+ export { TreeTooltip } from './plugins/TreeTooltip'
@@ -21,6 +21,17 @@ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_TREE_LE
21
21
  layerIndex: LAYER_INDEX_OF_INFO,
22
22
  validator: (params, { validateColumns }) => {
23
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
+ },
24
35
  padding: {
25
36
  toBeTypes: ['number']
26
37
  },
@@ -0,0 +1,66 @@
1
+ import {
2
+ Subject,
3
+ } from 'rxjs'
4
+ import type { DefinePluginConfig } from '../../../lib/core-types'
5
+ import {
6
+ defineTreePlugin } from '../../../lib/core'
7
+ import { DEFAULT_TREE_TOOLTIP_PARAMS } from '../defaults'
8
+ import { LAYER_INDEX_OF_TOOLTIP } from '../../const'
9
+ import { createBaseTooltip } from '../../base/BaseTooltip'
10
+
11
+ const pluginName = 'TreeTooltip'
12
+
13
+ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_TREE_TOOLTIP_PARAMS> = {
14
+ name: pluginName,
15
+ defaultParams: DEFAULT_TREE_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 TreeTooltip = defineTreePlugin(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
+ })
@@ -1 +0,0 @@
1
- export declare const ScalingArea: import('@orbcharts/core-types/dist/src/types/Plugin').PluginConstructor<"grid", "ScalingArea", import('@orbcharts/plugins-basic-types').ScalingAreaParams>;