axidio-styleguide-library1-v2 0.0.800 → 0.0.802
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.
|
@@ -9337,7 +9337,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
9337
9337
|
.style('fill', function (d) {
|
|
9338
9338
|
return metaData.colors[d.key];
|
|
9339
9339
|
})
|
|
9340
|
-
.attr('width', xSubgroup.bandwidth())
|
|
9340
|
+
.attr('width', self.isZoomedOut ? xSubgroup.bandwidth() : xSubgroup.bandwidth() * 0.5)
|
|
9341
9341
|
.text(function (d) {
|
|
9342
9342
|
return d.value;
|
|
9343
9343
|
});
|