@orbcharts/plugins-basic 3.0.0-beta.12 → 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 +38 -38
  3. package/dist/orbcharts-plugins-basic.umd.js +9 -9
  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 -1395
  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 -606
  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
@@ -103,13 +103,13 @@ const _2 = {
103
103
  // const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
104
104
  // if (eventData.highlightTarget === 'group') {
105
105
  // const titleSvg = `<g><text dominant-baseline="hanging" font-size="${styles.textSizePx}">${eventData.groupLabel}</text></g>`
106
- // const maxLengthText = eventData.groups.reduce((acc, group) => {
106
+ // const maxLengthText = eventData.group.reduce((acc, group) => {
107
107
  // const text = `${group.seriesLabel}${group.value}`
108
108
  // return text.length > acc.length ? text : acc
109
109
  // }, '')
110
110
  // const maxTextWidth = measureTextWidth(maxLengthText, styles.textSizePx)
111
111
  // const lineEndX = maxTextWidth + styles.textSizePx * 2
112
- // const contentSvg = eventData.groups
112
+ // const contentSvg = eventData.group
113
113
  // .map((group, i) => {
114
114
  // const y = i * styles.textSizePx * 1.5
115
115
  // return `<g transform="translate(0, ${styles.textSizePx * 2})">
@@ -149,10 +149,10 @@ const _2 = {
149
149
  // }
150
150
  // },
151
151
  renderFn: (t, { styles: e, utils: n }) => {
152
- const r = e.textSizePx * 0.7, i = e.textSizePx / 2 - r / 2, o = `<g><text dominant-baseline="hanging" font-size="${e.textSizePx}">${t.groupLabel}</text></g>`, a = t.groups.reduce((c, f) => {
152
+ const r = e.textSizePx * 0.7, i = e.textSizePx / 2 - r / 2, o = `<g><text dominant-baseline="hanging" font-size="${e.textSizePx}">${t.groupLabel}</text></g>`, a = t.group.reduce((c, f) => {
153
153
  const h = `${f.seriesLabel}${f.value}`;
154
154
  return h.length > c.length ? h : c;
155
- }, ""), l = n.measureTextWidth(a, e.textSizePx) + e.textSizePx * 2, u = t.groups.map((c, f) => {
155
+ }, ""), l = n.measureTextWidth(a, e.textSizePx) + e.textSizePx * 2, u = t.group.map((c, f) => {
156
156
  const h = f * e.textSizePx * 1.5, p = c.id === (t.datum && t.datum.id);
157
157
  return `<g transform="translate(0, ${e.textSizePx * 2})">
158
158
  <rect width="${r}" height="${r}" x="${i}" y="${h + i}" rx="${r / 2}" fill="${c.color}"></rect>
@@ -171,13 +171,13 @@ xm.renderFn.toString = () => `(eventData, { styles, utils }) => {
171
171
  const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
172
172
 
173
173
  const titleSvg = \`<g><text dominant-baseline="hanging" font-size="\${styles.textSizePx}">\${eventData.groupLabel}</text></g>\`
174
- const maxLengthText = eventData.groups.reduce((acc, group) => {
174
+ const maxLengthText = eventData.group.reduce((acc, group) => {
175
175
  const text = \`\${group.seriesLabel}\${group.value}\`
176
176
  return text.length > acc.length ? text : acc
177
177
  }, '')
178
178
  const maxTextWidth = utils.measureTextWidth(maxLengthText, styles.textSizePx)
179
179
  const lineEndX = maxTextWidth + styles.textSizePx * 2
180
- const contentSvg = eventData.groups
180
+ const contentSvg = eventData.group
181
181
  .map((group, i) => {
182
182
  const y = i * styles.textSizePx * 1.5
183
183
  const isHighlight = group.id === (eventData.datum && eventData.datum.id)
@@ -17583,7 +17583,7 @@ const w$ = (t, {
17583
17583
  series: z.SeriesDataMap.get(X.seriesLabel),
17584
17584
  seriesIndex: X.seriesIndex,
17585
17585
  seriesLabel: X.seriesLabel,
17586
- groups: z.GroupDataMap.get(X.groupLabel),
17586
+ group: z.GroupDataMap.get(X.groupLabel),
17587
17587
  groupIndex: X.groupIndex,
17588
17588
  groupLabel: X.groupLabel,
17589
17589
  event: N,
@@ -17602,7 +17602,7 @@ const w$ = (t, {
17602
17602
  series: z.SeriesDataMap.get(X.seriesLabel),
17603
17603
  seriesIndex: X.seriesIndex,
17604
17604
  seriesLabel: X.seriesLabel,
17605
- groups: z.GroupDataMap.get(X.groupLabel),
17605
+ group: z.GroupDataMap.get(X.groupLabel),
17606
17606
  groupIndex: X.groupIndex,
17607
17607
  groupLabel: X.groupLabel,
17608
17608
  event: N,
@@ -17621,7 +17621,7 @@ const w$ = (t, {
17621
17621
  series: z.SeriesDataMap.get(X.seriesLabel),
17622
17622
  seriesIndex: X.seriesIndex,
17623
17623
  seriesLabel: X.seriesLabel,
17624
- groups: z.GroupDataMap.get(X.groupLabel),
17624
+ group: z.GroupDataMap.get(X.groupLabel),
17625
17625
  groupIndex: X.groupIndex,
17626
17626
  groupLabel: X.groupLabel,
17627
17627
  event: N,
@@ -17640,7 +17640,7 @@ const w$ = (t, {
17640
17640
  series: z.SeriesDataMap.get(X.seriesLabel),
17641
17641
  seriesIndex: X.seriesIndex,
17642
17642
  seriesLabel: X.seriesLabel,
17643
- groups: z.GroupDataMap.get(X.groupLabel),
17643
+ group: z.GroupDataMap.get(X.groupLabel),
17644
17644
  groupIndex: X.groupIndex,
17645
17645
  groupLabel: X.groupLabel,
17646
17646
  event: N,
@@ -17927,7 +17927,7 @@ const P$ = (t, {
17927
17927
  series: E.SeriesDataMap.get(Z.seriesLabel),
17928
17928
  seriesIndex: Z.seriesIndex,
17929
17929
  seriesLabel: Z.seriesLabel,
17930
- groups: E.GroupDataMap.get(Z.groupLabel),
17930
+ group: E.GroupDataMap.get(Z.groupLabel),
17931
17931
  groupIndex: Z.groupIndex,
17932
17932
  groupLabel: Z.groupLabel,
17933
17933
  event: I,
@@ -17945,7 +17945,7 @@ const P$ = (t, {
17945
17945
  series: E.SeriesDataMap.get(Z.seriesLabel),
17946
17946
  seriesIndex: Z.seriesIndex,
17947
17947
  seriesLabel: Z.seriesLabel,
17948
- groups: E.GroupDataMap.get(Z.groupLabel),
17948
+ group: E.GroupDataMap.get(Z.groupLabel),
17949
17949
  groupIndex: Z.groupIndex,
17950
17950
  groupLabel: Z.groupLabel,
17951
17951
  event: I,
@@ -17963,7 +17963,7 @@ const P$ = (t, {
17963
17963
  series: E.SeriesDataMap.get(Z.seriesLabel),
17964
17964
  seriesIndex: Z.seriesIndex,
17965
17965
  seriesLabel: Z.seriesLabel,
17966
- groups: E.GroupDataMap.get(Z.groupLabel),
17966
+ group: E.GroupDataMap.get(Z.groupLabel),
17967
17967
  groupIndex: Z.groupIndex,
17968
17968
  groupLabel: Z.groupLabel,
17969
17969
  event: I,
@@ -17981,7 +17981,7 @@ const P$ = (t, {
17981
17981
  series: E.SeriesDataMap.get(Z.seriesLabel),
17982
17982
  seriesIndex: Z.seriesIndex,
17983
17983
  seriesLabel: Z.seriesLabel,
17984
- groups: E.GroupDataMap.get(Z.groupLabel),
17984
+ group: E.GroupDataMap.get(Z.groupLabel),
17985
17985
  groupIndex: Z.groupIndex,
17986
17986
  groupLabel: Z.groupLabel,
17987
17987
  event: I,
@@ -18304,7 +18304,7 @@ const $p = (t, {
18304
18304
  series: N.SeriesDataMap.get(O.seriesLabel),
18305
18305
  seriesIndex: O.seriesIndex,
18306
18306
  seriesLabel: O.seriesLabel,
18307
- groups: N.GroupDataMap.get(O.groupLabel),
18307
+ group: N.GroupDataMap.get(O.groupLabel),
18308
18308
  groupIndex: O.groupIndex,
18309
18309
  groupLabel: O.groupLabel,
18310
18310
  event: I,
@@ -18321,7 +18321,7 @@ const $p = (t, {
18321
18321
  series: N.SeriesDataMap.get(O.seriesLabel),
18322
18322
  seriesIndex: O.seriesIndex,
18323
18323
  seriesLabel: O.seriesLabel,
18324
- groups: N.GroupDataMap.get(O.groupLabel),
18324
+ group: N.GroupDataMap.get(O.groupLabel),
18325
18325
  groupIndex: O.groupIndex,
18326
18326
  groupLabel: O.groupLabel,
18327
18327
  event: I,
@@ -18338,7 +18338,7 @@ const $p = (t, {
18338
18338
  series: N.SeriesDataMap.get(O.seriesLabel),
18339
18339
  seriesIndex: O.seriesIndex,
18340
18340
  seriesLabel: O.seriesLabel,
18341
- groups: N.GroupDataMap.get(O.groupLabel),
18341
+ group: N.GroupDataMap.get(O.groupLabel),
18342
18342
  groupIndex: O.groupIndex,
18343
18343
  groupLabel: O.groupLabel,
18344
18344
  event: I,
@@ -18355,7 +18355,7 @@ const $p = (t, {
18355
18355
  series: N.SeriesDataMap.get(O.seriesLabel),
18356
18356
  seriesIndex: O.seriesIndex,
18357
18357
  seriesLabel: O.seriesLabel,
18358
- groups: N.GroupDataMap.get(O.groupLabel),
18358
+ group: N.GroupDataMap.get(O.groupLabel),
18359
18359
  groupIndex: O.groupIndex,
18360
18360
  groupLabel: O.groupLabel,
18361
18361
  event: I,
@@ -18746,7 +18746,7 @@ const R$ = (t, {
18746
18746
  series: W.SeriesDataMap.get(X.seriesLabel),
18747
18747
  seriesIndex: X.seriesIndex,
18748
18748
  seriesLabel: X.seriesLabel,
18749
- groups: W.GroupDataMap.get(X.groupLabel),
18749
+ group: W.GroupDataMap.get(X.groupLabel),
18750
18750
  groupIndex: X.groupIndex,
18751
18751
  groupLabel: X.groupLabel,
18752
18752
  event: K,
@@ -18763,7 +18763,7 @@ const R$ = (t, {
18763
18763
  series: W.SeriesDataMap.get(X.seriesLabel),
18764
18764
  seriesIndex: X.seriesIndex,
18765
18765
  seriesLabel: X.seriesLabel,
18766
- groups: W.GroupDataMap.get(X.groupLabel),
18766
+ group: W.GroupDataMap.get(X.groupLabel),
18767
18767
  groupIndex: X.groupIndex,
18768
18768
  groupLabel: X.groupLabel,
18769
18769
  event: K,
@@ -18780,7 +18780,7 @@ const R$ = (t, {
18780
18780
  series: W.SeriesDataMap.get(X.seriesLabel),
18781
18781
  seriesIndex: X.seriesIndex,
18782
18782
  seriesLabel: X.seriesLabel,
18783
- groups: W.GroupDataMap.get(X.groupLabel),
18783
+ group: W.GroupDataMap.get(X.groupLabel),
18784
18784
  groupIndex: X.groupIndex,
18785
18785
  groupLabel: X.groupLabel,
18786
18786
  event: K,
@@ -18797,7 +18797,7 @@ const R$ = (t, {
18797
18797
  series: W.SeriesDataMap.get(X.seriesLabel),
18798
18798
  seriesIndex: X.seriesIndex,
18799
18799
  seriesLabel: X.seriesLabel,
18800
- groups: W.GroupDataMap.get(X.groupLabel),
18800
+ group: W.GroupDataMap.get(X.groupLabel),
18801
18801
  groupIndex: X.groupIndex,
18802
18802
  groupLabel: X.groupLabel,
18803
18803
  event: K,
@@ -19136,7 +19136,7 @@ const B$ = (t, {
19136
19136
  series: I.SeriesDataMap.get(j.seriesLabel),
19137
19137
  seriesIndex: j.seriesIndex,
19138
19138
  seriesLabel: j.seriesLabel,
19139
- groups: I.GroupDataMap.get(j.groupLabel),
19139
+ group: I.GroupDataMap.get(j.groupLabel),
19140
19140
  groupIndex: j.groupIndex,
19141
19141
  groupLabel: j.groupLabel,
19142
19142
  event: O,
@@ -19153,7 +19153,7 @@ const B$ = (t, {
19153
19153
  series: I.SeriesDataMap.get(j.seriesLabel),
19154
19154
  seriesIndex: j.seriesIndex,
19155
19155
  seriesLabel: j.seriesLabel,
19156
- groups: I.GroupDataMap.get(j.groupLabel),
19156
+ group: I.GroupDataMap.get(j.groupLabel),
19157
19157
  groupIndex: j.groupIndex,
19158
19158
  groupLabel: j.groupLabel,
19159
19159
  event: O,
@@ -19170,7 +19170,7 @@ const B$ = (t, {
19170
19170
  series: I.SeriesDataMap.get(j.seriesLabel),
19171
19171
  seriesIndex: j.seriesIndex,
19172
19172
  seriesLabel: j.seriesLabel,
19173
- groups: I.GroupDataMap.get(j.groupLabel),
19173
+ group: I.GroupDataMap.get(j.groupLabel),
19174
19174
  groupIndex: j.groupIndex,
19175
19175
  groupLabel: j.groupLabel,
19176
19176
  event: O,
@@ -19187,7 +19187,7 @@ const B$ = (t, {
19187
19187
  series: I.SeriesDataMap.get(j.seriesLabel),
19188
19188
  seriesIndex: j.seriesIndex,
19189
19189
  seriesLabel: j.seriesLabel,
19190
- groups: I.GroupDataMap.get(j.groupLabel),
19190
+ group: I.GroupDataMap.get(j.groupLabel),
19191
19191
  groupIndex: j.groupIndex,
19192
19192
  groupLabel: j.groupLabel,
19193
19193
  event: O,
@@ -19398,7 +19398,7 @@ const F$ = (t, {
19398
19398
  series: T.SeriesDataMap.get(D.seriesLabel),
19399
19399
  seriesIndex: D.seriesIndex,
19400
19400
  seriesLabel: D.seriesLabel,
19401
- groups: T.GroupDataMap.get(D.groupLabel),
19401
+ group: T.GroupDataMap.get(D.groupLabel),
19402
19402
  groupIndex: D.groupIndex,
19403
19403
  groupLabel: D.groupLabel,
19404
19404
  event: S,
@@ -19416,7 +19416,7 @@ const F$ = (t, {
19416
19416
  series: T.SeriesDataMap.get(D.seriesLabel),
19417
19417
  seriesIndex: D.seriesIndex,
19418
19418
  seriesLabel: D.seriesLabel,
19419
- groups: T.GroupDataMap.get(D.groupLabel),
19419
+ group: T.GroupDataMap.get(D.groupLabel),
19420
19420
  groupIndex: D.groupIndex,
19421
19421
  groupLabel: D.groupLabel,
19422
19422
  event: S
@@ -19432,7 +19432,7 @@ const F$ = (t, {
19432
19432
  series: T.SeriesDataMap.get(D.seriesLabel),
19433
19433
  seriesIndex: D.seriesIndex,
19434
19434
  seriesLabel: D.seriesLabel,
19435
- groups: T.GroupDataMap.get(D.groupLabel),
19435
+ group: T.GroupDataMap.get(D.groupLabel),
19436
19436
  groupIndex: D.groupIndex,
19437
19437
  groupLabel: D.groupLabel,
19438
19438
  event: S,
@@ -19449,7 +19449,7 @@ const F$ = (t, {
19449
19449
  series: T.SeriesDataMap.get(D.seriesLabel),
19450
19450
  seriesIndex: D.seriesIndex,
19451
19451
  seriesLabel: D.seriesLabel,
19452
- groups: T.GroupDataMap.get(D.groupLabel),
19452
+ group: T.GroupDataMap.get(D.groupLabel),
19453
19453
  groupIndex: D.groupIndex,
19454
19454
  groupLabel: D.groupLabel,
19455
19455
  event: S,
@@ -20990,7 +20990,7 @@ const pz = ue(KE)(({ selection: t, rootSelection: e, name: n, subject: r, observ
20990
20990
  series: [],
20991
20991
  seriesIndex: -1,
20992
20992
  seriesLabel: "",
20993
- groups: w.GroupDataMap.get(_) ?? [],
20993
+ group: w.GroupDataMap.get(_) ?? [],
20994
20994
  groupIndex: A,
20995
20995
  groupLabel: _,
20996
20996
  event: k,
@@ -21007,7 +21007,7 @@ const pz = ue(KE)(({ selection: t, rootSelection: e, name: n, subject: r, observ
21007
21007
  series: [],
21008
21008
  seriesIndex: -1,
21009
21009
  seriesLabel: "",
21010
- groups: w.GroupDataMap.get(_) ?? [],
21010
+ group: w.GroupDataMap.get(_) ?? [],
21011
21011
  groupIndex: A,
21012
21012
  groupLabel: _,
21013
21013
  event: k,
@@ -21024,7 +21024,7 @@ const pz = ue(KE)(({ selection: t, rootSelection: e, name: n, subject: r, observ
21024
21024
  series: [],
21025
21025
  seriesIndex: -1,
21026
21026
  seriesLabel: "",
21027
- groups: w.GroupDataMap.get(_) ?? [],
21027
+ group: w.GroupDataMap.get(_) ?? [],
21028
21028
  groupIndex: A,
21029
21029
  groupLabel: _,
21030
21030
  event: k,
@@ -21041,7 +21041,7 @@ const pz = ue(KE)(({ selection: t, rootSelection: e, name: n, subject: r, observ
21041
21041
  series: [],
21042
21042
  seriesIndex: -1,
21043
21043
  seriesLabel: "",
21044
- groups: w.GroupDataMap.get(_) ?? [],
21044
+ group: w.GroupDataMap.get(_) ?? [],
21045
21045
  groupIndex: A,
21046
21046
  groupLabel: _,
21047
21047
  event: k,
@@ -21196,10 +21196,10 @@ const _p = {
21196
21196
  offset: [20, 5],
21197
21197
  padding: 10,
21198
21198
  renderFn: (t, { styles: e, utils: n }) => {
21199
- const r = e.textSizePx * 0.7, i = e.textSizePx / 2 - r / 2, o = `<g><text dominant-baseline="hanging" font-size="${e.textSizePx}">${t.groupLabel}</text></g>`, a = t.groups.reduce((c, f) => {
21199
+ const r = e.textSizePx * 0.7, i = e.textSizePx / 2 - r / 2, o = `<g><text dominant-baseline="hanging" font-size="${e.textSizePx}">${t.groupLabel}</text></g>`, a = t.group.reduce((c, f) => {
21200
21200
  const h = `${f.seriesLabel}${f.value}`;
21201
21201
  return h.length > c.length ? h : c;
21202
- }, ""), l = n.measureTextWidth(a, e.textSizePx) + e.textSizePx * 2, u = t.groups.map((c, f) => {
21202
+ }, ""), l = n.measureTextWidth(a, e.textSizePx) + e.textSizePx * 2, u = t.group.map((c, f) => {
21203
21203
  const h = f * e.textSizePx * 1.5, p = c.id === (t.datum && t.datum.id);
21204
21204
  return `<g transform="translate(0, ${e.textSizePx * 2})">
21205
21205
  <rect width="${r}" height="${r}" x="${i}" y="${h + i}" rx="${r / 2}" fill="${c.color}"></rect>
@@ -21218,13 +21218,13 @@ Z$.renderFn.toString = () => `(eventData, { styles, utils }) => {
21218
21218
  const offset = (styles.textSizePx / 2) - (bulletWidth / 2)
21219
21219
 
21220
21220
  const titleSvg = \`<g><text dominant-baseline="hanging" font-size="\${styles.textSizePx}">\${eventData.groupLabel}</text></g>\`
21221
- const maxLengthText = eventData.groups.reduce((acc, group) => {
21221
+ const maxLengthText = eventData.group.reduce((acc, group) => {
21222
21222
  const text = \`\${group.seriesLabel}\${group.value}\`
21223
21223
  return text.length > acc.length ? text : acc
21224
21224
  }, '')
21225
21225
  const maxTextWidth = utils.measureTextWidth(maxLengthText, styles.textSizePx)
21226
21226
  const lineEndX = maxTextWidth + styles.textSizePx * 2
21227
- const contentSvg = eventData.groups
21227
+ const contentSvg = eventData.group
21228
21228
  .map((group, i) => {
21229
21229
  const y = i * styles.textSizePx * 1.5
21230
21230
  const isHighlight = group.id === (eventData.datum && eventData.datum.id)