axidio-styleguide-library1-v2 0.0.855 → 0.0.856
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.
|
@@ -9066,13 +9066,17 @@ class HorizontalGroupedBarWithScrollZoomComponent extends ComponentUniqueId {
|
|
|
9066
9066
|
}
|
|
9067
9067
|
}
|
|
9068
9068
|
});
|
|
9069
|
-
return self.isZoomedOut
|
|
9069
|
+
return self.isZoomedOut
|
|
9070
9070
|
? tempScale.bandwidth()
|
|
9071
|
-
:
|
|
9071
|
+
: self.chartData.data.length && self.chartData.data.length > 8
|
|
9072
|
+
? tempScale.bandwidth() * 0.5
|
|
9073
|
+
: tempScale.bandwidth();
|
|
9072
9074
|
}
|
|
9073
|
-
return self.isZoomedOut
|
|
9075
|
+
return self.isZoomedOut
|
|
9074
9076
|
? tempScale.bandwidth()
|
|
9075
|
-
:
|
|
9077
|
+
: self.chartData.data.length && self.chartData.data.length > 8
|
|
9078
|
+
? tempScale.bandwidth() * 0.5
|
|
9079
|
+
: tempScale.bandwidth();
|
|
9076
9080
|
})
|
|
9077
9081
|
.attr('height', function (d) {
|
|
9078
9082
|
if (d.value == -1) {
|