axidio-styleguide-library1-v2 0.1.95 → 0.1.96
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.
|
@@ -8939,9 +8939,9 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8939
8939
|
return y(0);
|
|
8940
8940
|
})
|
|
8941
8941
|
.attr('width', function (d) {
|
|
8942
|
-
// For grouped bar charts in zoom-in view, use full subgroup bandwidth for
|
|
8942
|
+
// For grouped bar charts in zoom-in view, use slightly more than full subgroup bandwidth for extra thickness
|
|
8943
8943
|
if (subgroups.length > 1 && !self.isZoomedOut) {
|
|
8944
|
-
return xSubgroup.bandwidth();
|
|
8944
|
+
return xSubgroup.bandwidth() * 1.2;
|
|
8945
8945
|
}
|
|
8946
8946
|
// For single-bar (non-grouped) charts in zoom-in view, set bar width to 80
|
|
8947
8947
|
if (subgroups.length === 1 && !self.isZoomedOut) {
|