axidio-styleguide-library1-v2 0.2.73 → 0.2.75
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.
|
@@ -7726,12 +7726,10 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
7726
7726
|
.domain(data.map((d) => d.name.toLowerCase()));
|
|
7727
7727
|
}
|
|
7728
7728
|
else {
|
|
7729
|
-
// Increase padding for mobile view to add space after every bar group
|
|
7730
|
-
const barGroupPadding = isMobile ? 0.4 : 0.3;
|
|
7731
7729
|
x = d3.scaleBand()
|
|
7732
7730
|
.domain(groups)
|
|
7733
7731
|
.range([LEFT_AND_RIGHT_SPACES, width - RIGHT_SVG_WIDTH - LEFT_AND_RIGHT_SPACES])
|
|
7734
|
-
.padding([
|
|
7732
|
+
.padding([0.3]);
|
|
7735
7733
|
}
|
|
7736
7734
|
const xScaleFromOrigin = d3.scaleBand()
|
|
7737
7735
|
.domain(groups)
|