axidio-styleguide-library1-v2 0.6.65 → 0.6.67
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.
|
@@ -7840,7 +7840,7 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
7840
7840
|
.rangeRound([width, 0])
|
|
7841
7841
|
.align(0.5)
|
|
7842
7842
|
.padding([paddingValue])
|
|
7843
|
-
.domain(data.map((d) => d.name
|
|
7843
|
+
.domain(data.map((d) => d.name));
|
|
7844
7844
|
}
|
|
7845
7845
|
else {
|
|
7846
7846
|
const paddingValue = (isria && self.chartData.data.length >= 8) ? 0.10 : 0.3;
|
|
@@ -8241,9 +8241,9 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
8241
8241
|
}
|
|
8242
8242
|
// Handle labels with spaces
|
|
8243
8243
|
if (d.trim().indexOf(' ') > -1) {
|
|
8244
|
-
return d.trim().substring(0, d.indexOf(' '))
|
|
8244
|
+
return d.trim().substring(0, d.indexOf(' '));
|
|
8245
8245
|
}
|
|
8246
|
-
return d
|
|
8246
|
+
return d;
|
|
8247
8247
|
}
|
|
8248
8248
|
calculateMaxValue(data, keyList) {
|
|
8249
8249
|
let maxValue = d3.max(data, (d) => d3.max(keyList, (key) => +d[key]));
|