axidio-styleguide-library1-v2 0.7.48 → 0.7.49
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.
|
@@ -8659,7 +8659,9 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8659
8659
|
}
|
|
8660
8660
|
});
|
|
8661
8661
|
// Return position relative to the group (since bars are inside a translated group element)
|
|
8662
|
-
return calculatedScale(d.key) || 0;
|
|
8662
|
+
// return calculatedScale(d.key) || 0;
|
|
8663
|
+
const position = calculatedScale(d.key);
|
|
8664
|
+
return position !== undefined ? position : 0;
|
|
8663
8665
|
}
|
|
8664
8666
|
// private calculateDrilldownBarX(d, data, x, self, tempScale) {
|
|
8665
8667
|
// // ✅ FIX: Use the actual subgroups from metaData, not Object.keys
|