@orbcharts/plugins-basic 3.0.0-beta.11 → 3.0.0-beta.12
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.
@@ -24791,7 +24791,7 @@ function HN({ nodeGSelection: t, fullParams: e, fullChartParams: n }) {
|
|
24791
24791
|
text: r.label,
|
24792
24792
|
radius: r.r * e.bubbleLabel.fillRate,
|
24793
24793
|
lineHeight: im * e.bubbleLabel.lineHeight,
|
24794
|
-
isBreakAll: e.bubbleLabel.wordBreakAll
|
24794
|
+
isBreakAll: r.label.length <= e.bubbleLabel.maxLineLength ? !1 : e.bubbleLabel.wordBreakAll
|
24795
24795
|
});
|
24796
24796
|
}), t.select("text").attr("pointer-events", "none").attr("style", (r) => e.bubbleLabel.styleFn(r)), t.select(`circle.${um}`);
|
24797
24797
|
}
|
@@ -25497,11 +25497,12 @@ function lF({ selection: t, bubblesData: e, fullParams: n, sumSeries: r }) {
|
|
25497
25497
|
(a) => a.remove()
|
25498
25498
|
).attr("transform", (a) => `translate(${a.x},${a.y})`), o = r ? "seriesLabel" : "label";
|
25499
25499
|
return i.select("circle").transition().duration(200).attr("r", (a) => a.r).attr("fill", (a) => a.color), i.each((a, s, l) => {
|
25500
|
-
V(l[s])
|
25501
|
-
|
25500
|
+
const u = V(l[s]), c = a[o] ?? "";
|
25501
|
+
u.call(G$, {
|
25502
|
+
text: c,
|
25502
25503
|
radius: a.r * n.bubbleLabel.fillRate,
|
25503
25504
|
lineHeight: cm * n.bubbleLabel.lineHeight,
|
25504
|
-
isBreakAll: n.bubbleLabel.wordBreakAll
|
25505
|
+
isBreakAll: c.length <= n.bubbleLabel.maxLineLength ? !1 : n.bubbleLabel.wordBreakAll
|
25505
25506
|
});
|
25506
25507
|
}), i;
|
25507
25508
|
}
|