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

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 (99) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-plugins-basic.es.js +43 -42
  3. package/dist/orbcharts-plugins-basic.umd.js +55 -55
  4. package/lib/core-types.ts +7 -7
  5. package/lib/core.ts +6 -6
  6. package/lib/plugins-basic-types.ts +6 -6
  7. package/package.json +44 -44
  8. package/src/base/BaseBars.ts +765 -765
  9. package/src/base/BaseBarsTriangle.ts +676 -676
  10. package/src/base/BaseDots.ts +464 -464
  11. package/src/base/BaseGroupAxis.ts +679 -679
  12. package/src/base/BaseLegend.ts +684 -684
  13. package/src/base/BaseLineAreas.ts +629 -629
  14. package/src/base/BaseLines.ts +706 -706
  15. package/src/base/BaseStackedBar.ts +782 -782
  16. package/src/base/BaseTooltip.ts +385 -385
  17. package/src/base/BaseValueAxis.ts +583 -583
  18. package/src/base/types.ts +2 -2
  19. package/src/const.ts +30 -30
  20. package/src/grid/defaults.ts +246 -246
  21. package/src/grid/gridObservables.ts +554 -554
  22. package/src/grid/index.ts +16 -16
  23. package/src/grid/plugins/Bars.ts +69 -69
  24. package/src/grid/plugins/BarsPN.ts +66 -66
  25. package/src/grid/plugins/BarsTriangle.ts +73 -73
  26. package/src/grid/plugins/Dots.ts +68 -68
  27. package/src/grid/plugins/GridLegend.ts +107 -107
  28. package/src/grid/plugins/GridTooltip.ts +66 -66
  29. package/src/grid/plugins/GridZoom.ts +218 -218
  30. package/src/grid/plugins/GroupAux.ts +1103 -1103
  31. package/src/grid/plugins/GroupAxis.ts +97 -97
  32. package/src/grid/plugins/LineAreas.ts +65 -65
  33. package/src/grid/plugins/Lines.ts +59 -59
  34. package/src/grid/plugins/StackedBar.ts +64 -64
  35. package/src/grid/plugins/StackedValueAxis.ts +96 -96
  36. package/src/grid/plugins/ValueAxis.ts +94 -94
  37. package/src/index.ts +6 -6
  38. package/src/multiGrid/defaults.ts +224 -224
  39. package/src/multiGrid/index.ts +14 -14
  40. package/src/multiGrid/multiGridObservables.ts +49 -49
  41. package/src/multiGrid/plugins/MultiBars.ts +108 -108
  42. package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
  43. package/src/multiGrid/plugins/MultiDots.ts +102 -102
  44. package/src/multiGrid/plugins/MultiGridLegend.ts +159 -159
  45. package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
  46. package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
  47. package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
  48. package/src/multiGrid/plugins/MultiLines.ts +101 -101
  49. package/src/multiGrid/plugins/MultiStackedBar.ts +106 -106
  50. package/src/multiGrid/plugins/MultiStackedValueAxis.ts +134 -134
  51. package/src/multiGrid/plugins/MultiValueAxis.ts +134 -134
  52. package/src/multiGrid/plugins/OverlappingStackedValueAxes.ts +299 -299
  53. package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -300
  54. package/src/multiValue/defaults.ts +166 -166
  55. package/src/multiValue/index.ts +8 -8
  56. package/src/multiValue/multiValueObservables.ts +297 -297
  57. package/src/multiValue/plugins/MultiValueLegend.ts +107 -107
  58. package/src/multiValue/plugins/MultiValueTooltip.ts +66 -66
  59. package/src/multiValue/plugins/Scatter.ts +426 -426
  60. package/src/multiValue/plugins/ScatterBubbles.ts +554 -554
  61. package/src/multiValue/plugins/XYAux.ts +681 -681
  62. package/src/multiValue/plugins/XYAxes.ts +684 -684
  63. package/src/multiValue/plugins/XYZoom.ts +299 -299
  64. package/src/noneData/defaults.ts +102 -102
  65. package/src/noneData/index.ts +3 -3
  66. package/src/noneData/plugins/Container.ts +27 -27
  67. package/src/noneData/plugins/Tooltip.ts +373 -373
  68. package/src/relationship/defaults.ts +196 -196
  69. package/src/relationship/index.ts +5 -5
  70. package/src/relationship/plugins/ForceDirected.ts +1168 -1168
  71. package/src/relationship/plugins/ForceDirectedBubbles.ts +1395 -1393
  72. package/src/relationship/plugins/RelationshipLegend.ts +100 -100
  73. package/src/relationship/plugins/RelationshipTooltip.ts +66 -66
  74. package/src/relationship/relationshipObservables.ts +49 -49
  75. package/src/series/defaults.ts +207 -207
  76. package/src/series/index.ts +9 -9
  77. package/src/series/plugins/Bubbles.ts +606 -603
  78. package/src/series/plugins/Pie.ts +623 -623
  79. package/src/series/plugins/PieEventTexts.ts +284 -284
  80. package/src/series/plugins/PieLabels.ts +640 -640
  81. package/src/series/plugins/Rose.ts +516 -516
  82. package/src/series/plugins/RoseLabels.ts +600 -600
  83. package/src/series/plugins/SeriesLegend.ts +107 -107
  84. package/src/series/plugins/SeriesTooltip.ts +66 -66
  85. package/src/series/seriesObservables.ts +145 -145
  86. package/src/series/seriesUtils.ts +51 -51
  87. package/src/tree/defaults.ts +78 -78
  88. package/src/tree/index.ts +4 -4
  89. package/src/tree/plugins/TreeLegend.ts +100 -100
  90. package/src/tree/plugins/TreeMap.ts +333 -333
  91. package/src/tree/plugins/TreeTooltip.ts +66 -66
  92. package/src/utils/commonUtils.ts +21 -21
  93. package/src/utils/d3Graphics.ts +174 -174
  94. package/src/utils/d3Utils.ts +74 -74
  95. package/src/utils/observables.ts +14 -14
  96. package/src/utils/orbchartsUtils.ts +115 -115
  97. package/tsconfig.base.json +13 -13
  98. package/tsconfig.json +2 -2
  99. package/vite.config.js +22 -22
@@ -1,208 +1,208 @@
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
+ 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>\`
208
208
  }`
@@ -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'