axidio-styleguide-library1-v2 0.0.854 → 0.0.855

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