@orbcharts/plugins-basic 3.0.0-beta.13 → 3.0.0-beta.15

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 (100) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-plugins-basic/src/utils/d3Utils.d.ts +1 -0
  3. package/dist/orbcharts-plugins-basic.es.js +5558 -5443
  4. package/dist/orbcharts-plugins-basic.umd.js +159 -78
  5. package/lib/core-types.ts +7 -7
  6. package/lib/core.ts +6 -6
  7. package/lib/plugins-basic-types.ts +6 -6
  8. package/package.json +44 -44
  9. package/src/base/BaseBars.ts +765 -765
  10. package/src/base/BaseBarsTriangle.ts +676 -676
  11. package/src/base/BaseDots.ts +464 -464
  12. package/src/base/BaseGroupAxis.ts +679 -679
  13. package/src/base/BaseLegend.ts +684 -684
  14. package/src/base/BaseLineAreas.ts +629 -629
  15. package/src/base/BaseLines.ts +706 -706
  16. package/src/base/BaseStackedBar.ts +782 -782
  17. package/src/base/BaseTooltip.ts +385 -385
  18. package/src/base/BaseValueAxis.ts +583 -583
  19. package/src/base/types.ts +2 -2
  20. package/src/const.ts +30 -30
  21. package/src/grid/defaults.ts +250 -246
  22. package/src/grid/gridObservables.ts +554 -554
  23. package/src/grid/index.ts +16 -16
  24. package/src/grid/plugins/Bars.ts +69 -69
  25. package/src/grid/plugins/BarsPN.ts +66 -66
  26. package/src/grid/plugins/BarsTriangle.ts +73 -73
  27. package/src/grid/plugins/Dots.ts +68 -68
  28. package/src/grid/plugins/GridLegend.ts +107 -107
  29. package/src/grid/plugins/GridTooltip.ts +66 -66
  30. package/src/grid/plugins/GridZoom.ts +218 -218
  31. package/src/grid/plugins/GroupAux.ts +1103 -1103
  32. package/src/grid/plugins/GroupAxis.ts +97 -97
  33. package/src/grid/plugins/LineAreas.ts +65 -65
  34. package/src/grid/plugins/Lines.ts +59 -59
  35. package/src/grid/plugins/StackedBar.ts +64 -64
  36. package/src/grid/plugins/StackedValueAxis.ts +96 -96
  37. package/src/grid/plugins/ValueAxis.ts +94 -94
  38. package/src/index.ts +6 -6
  39. package/src/multiGrid/defaults.ts +228 -224
  40. package/src/multiGrid/index.ts +14 -14
  41. package/src/multiGrid/multiGridObservables.ts +49 -49
  42. package/src/multiGrid/plugins/MultiBars.ts +108 -108
  43. package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
  44. package/src/multiGrid/plugins/MultiDots.ts +102 -102
  45. package/src/multiGrid/plugins/MultiGridLegend.ts +159 -159
  46. package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
  47. package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
  48. package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
  49. package/src/multiGrid/plugins/MultiLines.ts +101 -101
  50. package/src/multiGrid/plugins/MultiStackedBar.ts +106 -106
  51. package/src/multiGrid/plugins/MultiStackedValueAxis.ts +134 -134
  52. package/src/multiGrid/plugins/MultiValueAxis.ts +134 -134
  53. package/src/multiGrid/plugins/OverlappingStackedValueAxes.ts +299 -299
  54. package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -300
  55. package/src/multiValue/defaults.ts +166 -166
  56. package/src/multiValue/index.ts +8 -8
  57. package/src/multiValue/multiValueObservables.ts +297 -297
  58. package/src/multiValue/plugins/MultiValueLegend.ts +107 -107
  59. package/src/multiValue/plugins/MultiValueTooltip.ts +66 -66
  60. package/src/multiValue/plugins/Scatter.ts +426 -426
  61. package/src/multiValue/plugins/ScatterBubbles.ts +554 -554
  62. package/src/multiValue/plugins/XYAux.ts +681 -681
  63. package/src/multiValue/plugins/XYAxes.ts +684 -684
  64. package/src/multiValue/plugins/XYZoom.ts +299 -299
  65. package/src/noneData/defaults.ts +102 -102
  66. package/src/noneData/index.ts +3 -3
  67. package/src/noneData/plugins/Container.ts +27 -27
  68. package/src/noneData/plugins/Tooltip.ts +373 -373
  69. package/src/relationship/defaults.ts +218 -196
  70. package/src/relationship/index.ts +5 -5
  71. package/src/relationship/plugins/ForceDirected.ts +1168 -1168
  72. package/src/relationship/plugins/ForceDirectedBubbles.ts +1403 -1395
  73. package/src/relationship/plugins/RelationshipLegend.ts +100 -100
  74. package/src/relationship/plugins/RelationshipTooltip.ts +66 -66
  75. package/src/relationship/relationshipObservables.ts +49 -49
  76. package/src/series/defaults.ts +230 -207
  77. package/src/series/index.ts +9 -9
  78. package/src/series/plugins/Bubbles.ts +620 -606
  79. package/src/series/plugins/Pie.ts +623 -623
  80. package/src/series/plugins/PieEventTexts.ts +284 -284
  81. package/src/series/plugins/PieLabels.ts +640 -640
  82. package/src/series/plugins/Rose.ts +516 -516
  83. package/src/series/plugins/RoseLabels.ts +600 -600
  84. package/src/series/plugins/SeriesLegend.ts +107 -107
  85. package/src/series/plugins/SeriesTooltip.ts +66 -66
  86. package/src/series/seriesObservables.ts +145 -145
  87. package/src/series/seriesUtils.ts +51 -51
  88. package/src/tree/defaults.ts +100 -78
  89. package/src/tree/index.ts +4 -4
  90. package/src/tree/plugins/TreeLegend.ts +100 -100
  91. package/src/tree/plugins/TreeMap.ts +341 -333
  92. package/src/tree/plugins/TreeTooltip.ts +66 -66
  93. package/src/utils/commonUtils.ts +21 -21
  94. package/src/utils/d3Graphics.ts +174 -174
  95. package/src/utils/d3Utils.ts +92 -74
  96. package/src/utils/observables.ts +14 -14
  97. package/src/utils/orbchartsUtils.ts +129 -115
  98. package/tsconfig.base.json +13 -13
  99. package/tsconfig.json +2 -2
  100. package/vite.config.js +22 -22
@@ -1,208 +1,231 @@
1
- import type { ComputedDatumSeries, EventSeries, EventName, ColorType } from '../../lib/core-types'
2
- import type {
3
- BubblesParams,
4
- PieParams,
5
- PieEventTextsParams,
6
- PieLabelsParams,
7
- RoseParams,
8
- RoseLabelsParams,
9
- SeriesLegendParams,
10
- SeriesTooltipParams
11
- } from '../../lib/plugins-basic-types'
12
-
13
-
14
- export const DEFAULT_BUBBLES_PARAMS: BubblesParams = {
15
- force: {
16
- strength: 0.08, // 泡泡引力
17
- velocityDecay: 0.3, // 衰減數
18
- collisionSpacing: 2 // 泡泡間距
19
- },
20
- bubbleLabel: {
21
- fillRate: 0.6,
22
- lineHeight: 1,
23
- maxLineLength: 6,
24
- wordBreakAll: true,
25
- },
26
- // highlightRIncrease: 0,
27
- arcScaleType: 'area'
28
- }
29
-
30
- export const DEFAULT_PIE_PARAMS: PieParams = {
31
- // padding: {
32
- // top: 50,
33
- // right: 70,
34
- // bottom: 50,
35
- // left: 70
36
- // },
37
- outerRadius: 0.85,
38
- innerRadius: 0,
39
- outerRadiusWhileHighlight: 0.9,
40
- // label?: LabelStyle
41
- // enterDuration: 800,
42
- startAngle: 0,
43
- endAngle: Math.PI * 2,
44
- padAngle: 0,
45
- strokeColorType: 'background',
46
- strokeWidth: 1,
47
- // padRadius: 100,
48
- cornerRadius: 0,
49
- // highlightTarget: 'datum',
50
- // highlightId: null,
51
- // highlightLabel: null,
52
- }
53
-
54
- export const DEFAULT_PIE_EVENT_TEXTS_PARAMS: PieEventTextsParams = {
55
- renderFn: (eventData: EventSeries) => {
56
- if (eventData.eventName === 'mouseover' || eventData.eventName === 'mousemove') {
57
- return [String(eventData.datum!.value)]
58
- }
59
- return [
60
- String(
61
- Math.round(
62
- eventData.data.reduce((acc, seriesData) => {
63
- return acc + seriesData.reduce((_acc, data) => {
64
- return _acc + (data.value ?? 0)
65
- }, 0)
66
- }, 0) * (eventData.tween ?? 1)
67
- )
68
- )
69
- ]
70
- },
71
- textAttrs: [
72
- {
73
- "transform": "translate(0, 0)"
74
- }
75
- ],
76
- textStyles: [
77
- {
78
- "font-weight": "bold",
79
- "text-anchor": "middle",
80
- "pointer-events": "none",
81
- "dominant-baseline": "middle",
82
- "font-size": 64,
83
- "fill": "#000"
84
- }
85
- ]
86
- }
87
- DEFAULT_PIE_EVENT_TEXTS_PARAMS.renderFn.toString = () => `(eventData) => {
88
- if (eventData.eventName === 'mouseover' || eventData.eventName === 'mousemove') {
89
- return [String(eventData.datum.value)]
90
- }
91
- return [
92
- String(
93
- Math.round(
94
- eventData.data.reduce((acc, seriesData) => {
95
- return acc + seriesData.reduce((_acc, data) => {
96
- return _acc + (data.value ?? 0)
97
- }, 0)
98
- }, 0) * (eventData.tween ?? 1)
99
- )
100
- )
101
- ]
102
- }`
103
-
104
- export const DEFAULT_PIE_LABELS_PARAMS: PieLabelsParams = {
105
- // solidColor: undefined,
106
- // colors: DEFAULT_COLORS,
107
- outerRadius: 0.85,
108
- outerRadiusWhileHighlight: 0.9,
109
- // innerRadius: 0,
110
- // enterDuration: 800,
111
- startAngle: 0,
112
- endAngle: Math.PI * 2,
113
- labelCentroid: 2.1,
114
- // fontSize: 12,
115
- labelColorType: 'primary',
116
- labelFn: d => String(d.label),
117
- }
118
- DEFAULT_PIE_LABELS_PARAMS.labelFn.toString = () => `d => String(d.label)`
119
-
120
- export const DEFAULT_ROSE_PARAMS: RoseParams = {
121
- outerRadius: 0.85,
122
- padAngle: 0,
123
- strokeColorType: 'background',
124
- strokeWidth: 0,
125
- cornerRadius: 0,
126
- arcScaleType: 'area',
127
- angleIncreaseWhileHighlight: 0.05
128
- }
129
-
130
- export const DEFAULT_ROSE_LABELS_PARAMS: RoseLabelsParams = {
131
- outerRadius: 0.85,
132
- labelCentroid: 2.1,
133
- labelFn: d => String(d.label),
134
- labelColorType: 'primary',
135
- arcScaleType: 'area'
136
- }
137
- DEFAULT_ROSE_LABELS_PARAMS.labelFn.toString = () => `d => String(d.label)`
138
-
139
- export const DEFAULT_SERIES_LEGEND_PARAMS: SeriesLegendParams = {
140
- // position: 'right',
141
- // justify: 'end',
142
- placement: 'right-end',
143
- padding: 28,
144
- // offset: [0, 0],
145
- backgroundFill: 'none',
146
- backgroundStroke: 'none',
147
- gap: 10,
148
- listRectWidth: 14,
149
- listRectHeight: 14,
150
- listRectRadius: 0,
151
- // highlightEvent: false
152
- textColorType: 'primary'
153
- }
154
-
155
- export const DEFAULT_SERIES_TOOLTIP_PARAMS: SeriesTooltipParams = {
156
- backgroundColorType: 'background',
157
- strokeColorType: 'primary',
158
- backgroundOpacity: 0.8,
159
- textColorType: 'primary',
160
- offset: [20, 5],
161
- padding: 10,
162
- renderFn: (eventData, { styles, utils }) => {
163
- const hasSeriesLabel = eventData.seriesLabel.slice(0, 7) === 'series_' ? false : true
164
- const hasDatumLabel = eventData.datum.label.slice(0, 7) === 'series_' ? false : true
165
- const bulletWidth = styles.textSizePx * 0.7
166
- const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
167
- const seriesSvg = hasSeriesLabel
168
- ? `<rect width="${bulletWidth}" height="${bulletWidth}" x="${offset}" y="${offset - 1}" rx="${bulletWidth / 2}" fill="${eventData.datum.color}"></rect>
169
- <text x="${styles.textSizePx * 1.5}" font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
170
- <tspan>${eventData.seriesLabel}</tspan>
171
- </text>`
172
- : ''
173
- const datumLabelSvg = hasDatumLabel
174
- ? `<tspan>${eventData.datum.label}</tspan> `
175
- : ''
176
- const datumSvg = `<text font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
177
- ${datumLabelSvg}<tspan font-weight="bold">${eventData.datum.value}</tspan>
178
- </text>`
179
-
180
- return `${seriesSvg}
181
- <g ${hasSeriesLabel ? `transform="translate(0, ${styles.textSizePx * 2})"` : ''}>
182
- ${datumSvg}
183
- </g>`
184
- },
185
- }
186
- DEFAULT_SERIES_TOOLTIP_PARAMS.renderFn.toString = () => `(eventData, { styles, utils }) => {
187
- const hasSeriesLabel = eventData.seriesLabel.slice(0, 7) === 'series_' ? false : true
188
- const hasDatumLabel = eventData.datum.label.slice(0, 7) === 'series_' ? false : true
189
- const bulletWidth = styles.textSizePx * 0.7
190
- const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
191
- const seriesSvg = hasSeriesLabel
192
- ? \`<rect width="\${bulletWidth}" height="\${bulletWidth}" x="\${offset}" y="\${offset - 1}" rx="\${bulletWidth / 2}" fill="\${eventData.datum.color}"></rect>
193
- <text x="\${styles.textSizePx * 1.5}" font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
194
- <tspan>\${eventData.seriesLabel}</tspan>
195
- </text>\`
196
- : ''
197
- const datumLabelSvg = hasDatumLabel
198
- ? \`<tspan>\${eventData.datum.label}</tspan> \`
199
- : ''
200
- const datumSvg = \`<text font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
201
- \${datumLabelSvg}<tspan font-weight="bold">\${eventData.datum.value}</tspan>
202
- </text>\`
203
-
204
- return \`\${seriesSvg}
205
- <g \${hasSeriesLabel ? \`transform="translate(0, \${styles.textSizePx * 2})"\` : ''}>
206
- \${datumSvg}
207
- </g>\`
1
+ import type { ComputedDatumSeries, EventSeries, EventName, ColorType } from '../../lib/core-types'
2
+ import type {
3
+ BubblesParams,
4
+ PieParams,
5
+ PieEventTextsParams,
6
+ PieLabelsParams,
7
+ RoseParams,
8
+ RoseLabelsParams,
9
+ SeriesLegendParams,
10
+ SeriesTooltipParams
11
+ } from '../../lib/plugins-basic-types'
12
+
13
+
14
+ export const DEFAULT_BUBBLES_PARAMS: BubblesParams = {
15
+ force: {
16
+ strength: 0.08, // 泡泡引力
17
+ velocityDecay: 0.3, // 衰減數
18
+ collisionSpacing: 2 // 泡泡間距
19
+ },
20
+ bubbleLabel: {
21
+ colorType: 'labelContrast',
22
+ fillRate: 0.6,
23
+ lineHeight: 1,
24
+ maxLineLength: 6,
25
+ wordBreakAll: true,
26
+ },
27
+ // highlightRIncrease: 0,
28
+ arcScaleType: 'area'
29
+ }
30
+
31
+ export const DEFAULT_PIE_PARAMS: PieParams = {
32
+ // padding: {
33
+ // top: 50,
34
+ // right: 70,
35
+ // bottom: 50,
36
+ // left: 70
37
+ // },
38
+ outerRadius: 0.85,
39
+ innerRadius: 0,
40
+ outerRadiusWhileHighlight: 0.9,
41
+ // label?: LabelStyle
42
+ // enterDuration: 800,
43
+ startAngle: 0,
44
+ endAngle: Math.PI * 2,
45
+ padAngle: 0,
46
+ strokeColorType: 'background',
47
+ strokeWidth: 1,
48
+ // padRadius: 100,
49
+ cornerRadius: 0,
50
+ // highlightTarget: 'datum',
51
+ // highlightId: null,
52
+ // highlightLabel: null,
53
+ }
54
+
55
+ export const DEFAULT_PIE_EVENT_TEXTS_PARAMS: PieEventTextsParams = {
56
+ renderFn: (eventData: EventSeries) => {
57
+ if (eventData.eventName === 'mouseover' || eventData.eventName === 'mousemove') {
58
+ return [String(eventData.datum!.value)]
59
+ }
60
+ return [
61
+ String(
62
+ Math.round(
63
+ eventData.data.reduce((acc, seriesData) => {
64
+ return acc + seriesData.reduce((_acc, data) => {
65
+ return _acc + (data.value ?? 0)
66
+ }, 0)
67
+ }, 0) * (eventData.tween ?? 1)
68
+ )
69
+ )
70
+ ]
71
+ },
72
+ textAttrs: [
73
+ {
74
+ "transform": "translate(0, 0)"
75
+ }
76
+ ],
77
+ textStyles: [
78
+ {
79
+ "font-weight": "bold",
80
+ "text-anchor": "middle",
81
+ "pointer-events": "none",
82
+ "dominant-baseline": "middle",
83
+ "font-size": 64,
84
+ "fill": "#000"
85
+ }
86
+ ]
87
+ }
88
+ DEFAULT_PIE_EVENT_TEXTS_PARAMS.renderFn.toString = () => `(eventData) => {
89
+ if (eventData.eventName === 'mouseover' || eventData.eventName === 'mousemove') {
90
+ return [String(eventData.datum.value)]
91
+ }
92
+ return [
93
+ String(
94
+ Math.round(
95
+ eventData.data.reduce((acc, seriesData) => {
96
+ return acc + seriesData.reduce((_acc, data) => {
97
+ return _acc + (data.value ?? 0)
98
+ }, 0)
99
+ }, 0) * (eventData.tween ?? 1)
100
+ )
101
+ )
102
+ ]
103
+ }`
104
+
105
+ export const DEFAULT_PIE_LABELS_PARAMS: PieLabelsParams = {
106
+ // solidColor: undefined,
107
+ // colors: DEFAULT_COLORS,
108
+ outerRadius: 0.85,
109
+ outerRadiusWhileHighlight: 0.9,
110
+ // innerRadius: 0,
111
+ // enterDuration: 800,
112
+ startAngle: 0,
113
+ endAngle: Math.PI * 2,
114
+ labelCentroid: 2.1,
115
+ // fontSize: 12,
116
+ labelColorType: 'primary',
117
+ labelFn: d => String(d.label),
118
+ }
119
+ DEFAULT_PIE_LABELS_PARAMS.labelFn.toString = () => `d => String(d.label)`
120
+
121
+ export const DEFAULT_ROSE_PARAMS: RoseParams = {
122
+ outerRadius: 0.85,
123
+ padAngle: 0,
124
+ strokeColorType: 'background',
125
+ strokeWidth: 0.5,
126
+ cornerRadius: 0,
127
+ arcScaleType: 'area',
128
+ angleIncreaseWhileHighlight: 0.05
129
+ }
130
+
131
+ export const DEFAULT_ROSE_LABELS_PARAMS: RoseLabelsParams = {
132
+ outerRadius: 0.85,
133
+ labelCentroid: 2.1,
134
+ labelFn: d => String(d.label),
135
+ labelColorType: 'primary',
136
+ arcScaleType: 'area'
137
+ }
138
+ DEFAULT_ROSE_LABELS_PARAMS.labelFn.toString = () => `d => String(d.label)`
139
+
140
+ export const DEFAULT_SERIES_LEGEND_PARAMS: SeriesLegendParams = {
141
+ // position: 'right',
142
+ // justify: 'end',
143
+ placement: 'right-end',
144
+ padding: 28,
145
+ // offset: [0, 0],
146
+ backgroundFill: 'none',
147
+ backgroundStroke: 'none',
148
+ gap: 10,
149
+ listRectWidth: 14,
150
+ listRectHeight: 14,
151
+ listRectRadius: 0,
152
+ // highlightEvent: false
153
+ textColorType: 'primary'
154
+ }
155
+
156
+ export const DEFAULT_SERIES_TOOLTIP_PARAMS: SeriesTooltipParams = {
157
+ backgroundColorType: 'background',
158
+ strokeColorType: 'primary',
159
+ backgroundOpacity: 0.8,
160
+ textColorType: 'primary',
161
+ offset: [20, 5],
162
+ padding: 10,
163
+ renderFn: (eventData, { styles, utils }) => {
164
+ const hasSeriesLabel = eventData.seriesLabel.slice(0, 7) === 'series_' ? false : true
165
+ const hasDatumLabel = eventData.datum.label.slice(0, 7) === 'series_' ? false : true
166
+ const bulletWidth = styles.textSizePx * 0.7
167
+ const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
168
+ const seriesSvg = hasSeriesLabel
169
+ ? `<rect width="${bulletWidth}" height="${bulletWidth}" x="${offset}" y="${offset - 1}" rx="${bulletWidth / 2}" fill="${eventData.datum.color}"></rect>
170
+ <text x="${styles.textSizePx * 1.5}" font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
171
+ <tspan>${eventData.seriesLabel}</tspan>
172
+ </text>`
173
+ : ''
174
+ const datumLabelSvg = hasDatumLabel
175
+ ? `<tspan>${eventData.datum.label}</tspan> `
176
+ : ''
177
+ const seriesLabelTextWidth = hasSeriesLabel
178
+ ? utils.measureTextWidth(`${eventData.seriesLabel}${eventData.datum.value}`, styles.textSizePx) + styles.textSizePx * 1.5
179
+ : 0
180
+ const datumLabelTextWidth = hasDatumLabel
181
+ ? utils.measureTextWidth(`${eventData.datum.label}${eventData.datum.value}`, styles.textSizePx)
182
+ : 0
183
+ const maxTextWidth = Math.max(seriesLabelTextWidth, datumLabelTextWidth)
184
+ const lineEndX = hasDatumLabel
185
+ ? maxTextWidth + styles.textSizePx * 1.5
186
+ : 0
187
+ const valueTextAnchor = hasDatumLabel ? 'end' : 'start'
188
+ const datumSvg = `<text font-size="${styles.textSizePx}" dominant-baseline="hanging" fill="${styles.textColor}">
189
+ ${datumLabelSvg}<tspan font-weight="bold" text-anchor="${valueTextAnchor}" x="${lineEndX}">${eventData.datum.value}</tspan>
190
+ </text>`
191
+
192
+ return `${seriesSvg}
193
+ <g ${hasSeriesLabel ? `transform="translate(0, ${styles.textSizePx * 2})"` : ''}>
194
+ ${datumSvg}
195
+ </g>`
196
+ },
197
+ }
198
+ DEFAULT_SERIES_TOOLTIP_PARAMS.renderFn.toString = () => `(eventData, { styles, utils }) => {
199
+ const hasSeriesLabel = eventData.seriesLabel.slice(0, 7) === 'series_' ? false : true
200
+ const hasDatumLabel = eventData.datum.label.slice(0, 7) === 'series_' ? false : true
201
+ const bulletWidth = styles.textSizePx * 0.7
202
+ const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
203
+ const seriesSvg = hasSeriesLabel
204
+ ? \`<rect width="\${bulletWidth}" height="\${bulletWidth}" x="\${offset}" y="\${offset - 1}" rx="\${bulletWidth / 2}" fill="\${eventData.datum.color}"></rect>
205
+ <text x="\${styles.textSizePx * 1.5}" font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
206
+ <tspan>\${eventData.seriesLabel}</tspan>
207
+ </text>\`
208
+ : ''
209
+ const datumLabelSvg = hasDatumLabel
210
+ ? \`<tspan>\${eventData.datum.label}</tspan> \`
211
+ : ''
212
+ const seriesLabelTextWidth = hasSeriesLabel
213
+ ? utils.measureTextWidth(\`\${eventData.seriesLabel}\${eventData.datum.value}\`, styles.textSizePx) + styles.textSizePx * 1.5
214
+ : 0
215
+ const datumLabelTextWidth = hasDatumLabel
216
+ ? utils.measureTextWidth(\`\${eventData.datum.label}\${eventData.datum.value}\`, styles.textSizePx)
217
+ : 0
218
+ const maxTextWidth = Math.max(seriesLabelTextWidth, datumLabelTextWidth)
219
+ const lineEndX = hasDatumLabel
220
+ ? maxTextWidth + styles.textSizePx * 1.5
221
+ : 0
222
+ const valueTextAnchor = hasDatumLabel ? 'end' : 'start'
223
+ const datumSvg = \`<text font-size="\${styles.textSizePx}" dominant-baseline="hanging" fill="\${styles.textColor}">
224
+ \${datumLabelSvg}<tspan font-weight="bold" text-anchor="\${valueTextAnchor}" x="\${lineEndX}">\${eventData.datum.value}</tspan>
225
+ </text>\`
226
+
227
+ return \`\${seriesSvg}
228
+ <g \${hasSeriesLabel ? \`transform="translate(0, \${styles.textSizePx * 2})"\` : ''}>
229
+ \${datumSvg}
230
+ </g>\`
208
231
  }`
@@ -1,10 +1,10 @@
1
- export * from './defaults'
2
- // export * from './types'
3
- export { Bubbles } from './plugins/Bubbles'
4
- export { Pie } from './plugins/Pie'
5
- export { PieEventTexts } from './plugins/PieEventTexts'
6
- export { PieLabels } from './plugins/PieLabels'
7
- export { Rose } from './plugins/Rose'
8
- export { RoseLabels } from './plugins/RoseLabels'
9
- export { SeriesLegend } from './plugins/SeriesLegend'
1
+ export * from './defaults'
2
+ // export * from './types'
3
+ export { Bubbles } from './plugins/Bubbles'
4
+ export { Pie } from './plugins/Pie'
5
+ export { PieEventTexts } from './plugins/PieEventTexts'
6
+ export { PieLabels } from './plugins/PieLabels'
7
+ export { Rose } from './plugins/Rose'
8
+ export { RoseLabels } from './plugins/RoseLabels'
9
+ export { SeriesLegend } from './plugins/SeriesLegend'
10
10
  export { SeriesTooltip } from './plugins/SeriesTooltip'